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

19 lines
403 B
C#
Raw Normal View History

2023-03-03 23:24:18 +03:30
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
2023-06-02 15:26:29 +03:30
using MTWireGuard.Application;
using MTWireGuard.Application.Repositories;
2023-03-03 23:24:18 +03:30
using Newtonsoft.Json;
using System.Net;
using System.Text;
namespace MTWireGuard.Pages
{
[Authorize]
public class IndexModel : PageModel
{
public void OnGet()
2023-03-03 23:24:18 +03:30
{
}
}
}