16 lines
339 B
C#
16 lines
339 B
C#
namespace YLErp.Modules.AppModule
|
|
{
|
|
class InitializeSetting
|
|
{
|
|
/// <summary>
|
|
/// 更新系统,默认false
|
|
/// </summary>
|
|
public bool UpgradeSystem { get; set; }
|
|
|
|
/// <summary>
|
|
/// 加载插件,默认false
|
|
/// </summary>
|
|
public bool LoadPlugin { get; set; }
|
|
}
|
|
}
|