mirror of
https://gitee.com/handyorg/HandyControl.git
synced 2024-12-02 20:07:56 +08:00
14 lines
316 B
C#
14 lines
316 B
C#
using System;
|
|
using HandyControl.Data.Enum;
|
|
|
|
namespace HandyControlDemo.Data
|
|
{
|
|
internal class AppConfig
|
|
{
|
|
public static string SavePath = $"{AppDomain.CurrentDomain.BaseDirectory}AppConfig.json";
|
|
|
|
public string Lang { get; set; } = "cn";
|
|
|
|
public SkinType Skin { get; set; }
|
|
}
|
|
} |