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