techgarage-ir.MTWireGuard/UI/Pages/Clients.cshtml.cs

18 lines
380 B
C#
Raw Normal View History

2023-03-03 23:24:18 +03:30
using AutoMapper;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
2023-06-02 15:26:29 +03:30
using MTWireGuard.Application.Models;
using MTWireGuard.Application.Models.Mikrotik;
using MTWireGuard.Application.Repositories;
using Newtonsoft.Json;
2023-03-03 23:24:18 +03:30
namespace MTWireGuard.Pages
{
public class ClientsModel : PageModel
{
public void OnGet()
2023-03-03 23:24:18 +03:30
{
}
}
}