techgarage-ir.MTWireGuard/UI/Pages/Index.cshtml.cs
2024-01-25 20:40:43 +03:30

19 lines
No EOL
403 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using MTWireGuard.Application;
using MTWireGuard.Application.Repositories;
using Newtonsoft.Json;
using System.Net;
using System.Text;
namespace MTWireGuard.Pages
{
[Authorize]
public class IndexModel : PageModel
{
public void OnGet()
{
}
}
}