diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-03-22 12:28:07 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-03-22 12:28:07 +0000 |
commit | 3f05ee34d209fcb994cba50955cd2e301315d9bd (patch) | |
tree | 5cd375c2e8ecc444786286af4d1afcbcaf95227e /Pages/Privacy.cshtml.cs | |
parent | d71f080ad276653399c92810c9122bf537e551fe (diff) |
Initial working version.
Diffstat (limited to 'Pages/Privacy.cshtml.cs')
-rw-r--r-- | Pages/Privacy.cshtml.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Pages/Privacy.cshtml.cs b/Pages/Privacy.cshtml.cs deleted file mode 100644 index 9afceae..0000000 --- a/Pages/Privacy.cshtml.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; - -namespace download_admin.Pages; - -public class PrivacyModel : PageModel -{ - private readonly ILogger<PrivacyModel> _logger; - - public PrivacyModel(ILogger<PrivacyModel> logger) - { - _logger = logger; - } - - public void OnGet() - { - } -} - |