31 lines
702 B
C#
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; }
|
|
}
|
|
}
|