blob: a24f5afddb1c3c3c8383b0ca42f014ebc459e2fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
namespace IOL.GreatOffice.Api.Data.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")
};
}
|