mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 08:28:17 +02:00
14 lines
390 B
C#
14 lines
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());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|