aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Static/AppPaths.cs
blob: 38d712bebf04eab11c315b78367513402a9fa259 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace IOL.GreatOffice.Api.Models.Static;

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", "dp-keys")
	};

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