using System; using System.Collections.Generic; using System.Linq; using System.Text; //---------------------------------------------------------------- //Module Name: $safeprojectname$ //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime 2016/1/23 16:46:30 //Author //Description Create //---------------------------------------------------------------- namespace Muchinfo.MTPClient.Data.Helper { [AttributeUsage(AttributeTargets.Property)] public class PropertyDiscAttribute:Attribute { /// /// 属性名称 /// public string PropertyName { get; set; } public PropertyDiscAttribute(string propertyName) { PropertyName = propertyName; } } }