namespace XP.Common.License.Configs { /// /// 授权配置实体 | License configuration entity /// public class LicenseConfig { /// /// 授权模式 | License mode /// public int LicenseMode { get; set; } = 0; /// /// 模块ID | Module ID /// public ushort ModuleId { get; set; } = 4; /// /// 是否使用SMA | Whether to use SMA /// public bool UseSma { get; set; } = false; /// /// 授权状态 | License state /// public int LicenseState { get; set; } = 20; } }