123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Ant.ORM
- {
- /// <summary>
- /// 扩展属性定义类
- /// </summary>
- [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
- public class ExtendPropertyAttribute : Attribute
- {
- private bool _IsExtendProperty = false;
- /// <summary>
- /// 是否是扩展属性
- /// </summary>
- public bool IsExtendProperty
- {
- get
- {
- return this._IsExtendProperty;
- }
- set
- {
- this._IsExtendProperty = value;
- }
- }
- }
- }
|