techgarage-ir.MTWireGuard/ViewComponents/CreateServerFormViewComponent.cs
2023-03-03 23:24:18 +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());
}
}
}