using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection.Metadata;
using System.Text;
using System.Threading.Tasks;
namespace LightSetupBase
{
///
/// 名称
///
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class Md5ConfigAttribute : Attribute
{
public Md5ConfigAttribute()
{
this.Name = String.Empty;
this.Comment = String.Empty;
}
public Md5ConfigAttribute(string name, string comment)
{
this.Name = name;
this.Comment = comment;
}
///
/// 属性名称
///
public string Name { get; set; }
///
/// 属性说明
///
public string Comment { get; set; }
}
}