techgarage-ir.MTWireGuard/ViewComponents/UpdateServerModalViewComponent.cs
2023-03-03 23:24:18 +03:30

14 lines
No EOL
390 B
C#

using Microsoft.AspNetCore.Mvc;
using MTWireGuard.Models.Requests;
namespace MTWireGuard.ViewComponents
{
[ViewComponent(Name = "UpdateServerModal")]
public class UpdateServerModalViewComponent : ViewComponent
{
public async Task<IViewComponentResult> InvokeAsync()
{
return View("UpdateServerModal", new UpdateServerRequest());
}
}
}