mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 13:58:09 +02:00
21 lines
559 B
C#
21 lines
559 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Diagnostics;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Templates.Blazor;
|
|
using System.Diagnostics;
|
|
|
|
namespace MTWireGuard.Pages
|
|
{
|
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
|
[IgnoreAntiforgeryToken]
|
|
[AllowAnonymous]
|
|
|
|
public class ErrorModel : PageModel
|
|
{
|
|
public ErrorModel()
|
|
{
|
|
}
|
|
}
|
|
}
|