mirror of
https://github.com/waynebian01/Shigure.git
synced 2026-09-03 07:15:24 +08:00
11 lines
284 B
C#
11 lines
284 B
C#
namespace Shigure;
|
|
|
|
internal static class AppPaths
|
|
{
|
|
public static string BaseDirectory => AppContext.BaseDirectory;
|
|
|
|
public static string UserDataDirectory => Path.Combine(
|
|
Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments),
|
|
AppInfo.AppName);
|
|
}
|