2024-07-21 00:31:22 +03:30
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2023-03-03 23:24:18 +03:30
|
|
|
using Microsoft.AspNetCore.Diagnostics;
|
2024-07-21 00:31:22 +03:30
|
|
|
using Microsoft.AspNetCore.Http;
|
2023-03-03 23:24:18 +03:30
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
2024-07-21 00:31:22 +03:30
|
|
|
using Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Templates.Blazor;
|
2023-03-03 23:24:18 +03:30
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
namespace MTWireGuard.Pages
|
|
|
|
{
|
|
|
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
|
|
|
[IgnoreAntiforgeryToken]
|
2024-07-21 00:31:22 +03:30
|
|
|
[AllowAnonymous]
|
|
|
|
|
2023-03-03 23:24:18 +03:30
|
|
|
public class ErrorModel : PageModel
|
|
|
|
{
|
|
|
|
public ErrorModel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2024-07-21 00:31:22 +03:30
|
|
|
}
|