mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 00:18:17 +02:00
15 lines
335 B
C#
15 lines
335 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using MTWireGuard.Application.Models;
|
|
using MTWireGuard.Application.Repositories;
|
|
|
|
namespace MTWireGuard.Pages
|
|
{
|
|
public class SettingsModel : PageModel
|
|
{
|
|
public void OnGet()
|
|
{
|
|
}
|
|
}
|
|
}
|