namespace YLErp.Web.App_Start.AppConfig { /// /// 配置字段属性扩展对象 /// public class ConfigFieldAttributeDto : ConfigFieldAttribute { public ConfigFieldAttributeDto(ConfigFieldAttribute attr) : base(attr) { } /// /// /// public string FieldName { get; set; } /// /// /// public Type FieldType { get; set; } /// /// /// public string FieldValue { get; set; } } }