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