techgarage-ir.MTWireGuard/UI/ViewComponents/CreateServerFormViewComponent.cs
2023-06-28 18:01:39 +03:30

14 lines
388 B
C#

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