callmeyan d2e960243c 优化多文档校对性能;
修复多文档同时校对时有几率数据错乱的问题;
2024-08-24 12:20:47 +08:00

14 lines
282 B
C#

namespace UtilLib
{
public class AppConfig
{
public string AppUrl { get; set; }
public bool AppRunInDebug { get; set; }
/// <summary>
/// dev | test | product
/// </summary>
public string Environment { get; set; }
}
}