mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 00:18:17 +02:00
16 lines
398 B
C#
16 lines
398 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
using MTWireGuard.Models.Requests;
|
|||
|
using System.Xml.Linq;
|
|||
|
|
|||
|
namespace MTWireGuard.ViewComponents
|
|||
|
{
|
|||
|
[ViewComponent(Name = "SyncUserModal")]
|
|||
|
public class SyncUserModalViewComponent : ViewComponent
|
|||
|
{
|
|||
|
public async Task<IViewComponentResult> InvokeAsync()
|
|||
|
{
|
|||
|
return View("SyncUserModal", new SyncUserRequest());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|