Files
zszq-trs/YLErpWeb/App/Config/ConfigFieldAttributeDto.cs
T
2024-05-09 14:06:26 +08:00

29 lines
624 B
C#

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