using System;
namespace Quiz.Utility
{
	/// 
	/// 模型属性特性。
	/// 
	public class ModelPropertyAttribute : Attribute
	{
		/// 
		/// 表示类的属性不与数据表中的字段相对应。
		/// 
		public bool NotTableColumn { get; private set; }
        /// 
        /// 实例化模型属性特性
        /// 
        /// 
		public ModelPropertyAttribute(bool nottablecolums)
		{
			this.NotTableColumn = nottablecolums;
		}
        /// 
        /// 将实例转换为等效的字符串形式
        /// 
        /// 
		public override string ToString()
		{
			return this.NotTableColumn ? "nottablecolum" : "";
		}
	}
}