aboutsummaryrefslogtreecommitdiffstats
path: root/src/Data/Static/AppCookies.cs
blob: 711d59eb8e04ff83ed95de54978983d6f5e9eb7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
	};
}