| 123456789101112131415161718192021222324252627282930313233343536 |
- 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
- {
- /// <summary>
- /// 属性名称
- /// </summary>
- public string PropertyName { get; set; }
- public PropertyDiscAttribute(string propertyName)
- {
- PropertyName = propertyName;
- }
- }
-
- }
|