mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 00:18:17 +02:00
19 lines
No EOL
403 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
} |