31 lines
538 B
C#
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; }
|
|
|
|
}
|
|
}
|
|
|