Files
lserp_cs_5.0/插件库/Zhaizj.Framework/Config/Setting/ISetting.cs
T
2026-07-10 15:25:05 +08:00

31 lines
538 B
C#

using System;
namespace Zhaizj.Framework.Config {
/// <summary>
/// 配置项
/// </summary>
public interface ISetting {
int Id { get; set; }
String DataType { get; set; }
String Name { get; set; }
String Description { get; set; }
// 格式json
String Options { get; set; }
String SettingValue { get; set; }
String ValueString { get; }
int ValueInt { get; }
Boolean ValueBool { get; }
DateTime ValueTime { get; }
}
}