Files
lightsetup/LightSetupBase/Md5ConfigAttributeProperty.cs
2023-05-22 09:29:58 +08:00

31 lines
702 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace LightSetupBase
{
/// <summary>
/// 配置属性
/// </summary>
public class Md5ConfigAttributeProperty : Md5ConfigAttribute
{
public Md5ConfigAttributeProperty()
{
this.PropertyName = String.Empty;
this.PropertyInfo = null;
}
/// <summary>
/// 属性名称
/// </summary>
public string PropertyName { get; set; }
/// <summary>
/// 属性信息
/// </summary>
public PropertyInfo PropertyInfo { get; set; }
}
}