summaryrefslogtreecommitdiffstats
path: root/src/server/StaticData/AppPaths.cs
blob: f7b5adc2e1c4bcc79edc04a9558f98d851976211 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace IOL.BookmarkThing.Server.StaticData;

public static class AppPaths
{
	public static AppPath AppData => new() {
			HostPath = Path.Combine(Directory.GetCurrentDirectory(), "AppData")
	};

	public static AppPath DataProtectionKeys => new() {
			HostPath = Path.Combine(Directory.GetCurrentDirectory(), "AppData", "data-protection-keys")
	};
}