techgarage-ir.MTWireGuard/UI/Pages/Error.cshtml.cs

22 lines
559 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Authorization;
2023-03-03 23:24:18 +03:30
using Microsoft.AspNetCore.Diagnostics;
using Microsoft.AspNetCore.Http;
2023-03-03 23:24:18 +03:30
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
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]
[AllowAnonymous]
2023-03-03 23:24:18 +03:30
public class ErrorModel : PageModel
{
public ErrorModel()
{
}
}
}