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

15 lines
411 B
C#

using Microsoft.AspNetCore.Mvc;
using MTWireGuard.Models.Requests;
using System.Xml.Linq;
namespace MTWireGuard.ViewComponents
{
[ViewComponent(Name = "CreateClientForm")]
public class CreateClientFormViewComponent : ViewComponent
{
public async Task<IViewComponentResult> InvokeAsync()
{
return View("CreateClientForm", new CreateClientRequest());
}
}
}