techgarage-ir.MTWireGuard/UI/Pages/Servers.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;
2023-03-03 23:24:18 +03:30
using Newtonsoft.Json;
namespace MTWireGuard.Pages
{
public class ServersModel : PageModel
{
public void OnGet()
2023-03-03 23:24:18 +03:30
{
}
}
}