techgarage-ir.MTWireGuard/ViewComponents/CreateServerFormViewComponent.cs

15 lines
388 B
C#
Raw Normal View History

2023-03-03 23:24:18 +03:30
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());
}
}
}