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