aboutsummaryrefslogtreecommitdiffstats
path: root/src/Data/Static/AppCookies.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/Static/AppCookies.cs')
-rw-r--r--src/Data/Static/AppCookies.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Data/Static/AppCookies.cs b/src/Data/Static/AppCookies.cs
new file mode 100644
index 0000000..711d59e
--- /dev/null
+++ b/src/Data/Static/AppCookies.cs
@@ -0,0 +1,21 @@
+using VSH.Data.Miscellaneous;
+
+namespace VSH.Data.Static;
+
+public static class AppCookies
+{
+ public static AppCookie Xsrf => new() {
+ Name = "vsh_xsrf",
+ Required = true
+ };
+
+ public static AppCookie Session => new() {
+ Name = "vsh_session",
+ Required = true
+ };
+
+ public static AppCookie Culture => new() {
+ Name = "vsh_culture",
+ Required = false
+ };
+} \ No newline at end of file