init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,30 @@
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; }
}
}