techgarage-ir.MTWireGuard/UI/ViewComponents/UpdateServerModalViewComponent.cs
2023-06-28 18:01:39 +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());
}
}
}