summaryrefslogtreecommitdiff
path: root/CoreWiki/Pages/Privacy.cshtml.cs
diff options
context:
space:
mode:
authorPaweł Bernaciak <pawelbernaciak@zohomail.eu>2023-02-10 16:19:46 +0100
committerPaweł Bernaciak <pawelbernaciak@zohomail.eu>2023-02-10 16:19:46 +0100
commit00c3b32e2db200a2f42396ac7f8381704ec97268 (patch)
tree089d68dcbda127d4c95ccca9b0c9a18b59dc8bdc /CoreWiki/Pages/Privacy.cshtml.cs
Initial Commit
Diffstat (limited to 'CoreWiki/Pages/Privacy.cshtml.cs')
-rw-r--r--CoreWiki/Pages/Privacy.cshtml.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/CoreWiki/Pages/Privacy.cshtml.cs b/CoreWiki/Pages/Privacy.cshtml.cs
new file mode 100644
index 0000000..5b28148
--- /dev/null
+++ b/CoreWiki/Pages/Privacy.cshtml.cs
@@ -0,0 +1,18 @@
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.Mvc.RazorPages;
+
+namespace CoreWiki.Pages;
+
+public class PrivacyModel : PageModel
+{
+ private readonly ILogger<PrivacyModel> _logger;
+
+ public PrivacyModel(ILogger<PrivacyModel> logger)
+ {
+ _logger = logger;
+ }
+
+ public void OnGet()
+ {
+ }
+} \ No newline at end of file