From 9764af998a4c91196687b8d27693b935a243ab84 Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 21 Mar 2024 14:54:11 +0000 Subject: Initial checkin following project regeneration to make post work --- Pages/Privacy.cshtml.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Pages/Privacy.cshtml.cs (limited to 'Pages/Privacy.cshtml.cs') diff --git a/Pages/Privacy.cshtml.cs b/Pages/Privacy.cshtml.cs new file mode 100644 index 0000000..9afceae --- /dev/null +++ b/Pages/Privacy.cshtml.cs @@ -0,0 +1,19 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace download_admin.Pages; + +public class PrivacyModel : PageModel +{ + private readonly ILogger _logger; + + public PrivacyModel(ILogger logger) + { + _logger = logger; + } + + public void OnGet() + { + } +} + -- cgit v1.2.3