using System; using System.Collections.Generic; #nullable disable namespace RuleEngine.Models { public partial class AppCfg { public int Id { get; set; } public string CfgKey { get; set; } public string CfgName { get; set; } public double? CfgValue { get; set; } public string CfgStrValue { get; set; } public string Description { get; set; } public bool? IsActive { get; set; } } }