HandyControl/HandyControlDemo/Data/AppConfig.cs

14 lines
314 B
C#
Raw Normal View History

2018-10-25 14:06:23 +08:00
using System;
using HandyControl.Data;
2018-10-25 14:06:23 +08:00
namespace HandyControlDemo.Data
{
internal class AppConfig
{
public static string SavePath = $"{AppDomain.CurrentDomain.BaseDirectory}AppConfig.json";
2019-01-07 19:45:46 +08:00
public string Lang { get; set; } = "zh-cn";
2018-10-27 20:01:47 +08:00
public SkinType Skin { get; set; }
2018-10-25 14:06:23 +08:00
}
}