Component File /DBCommander/Misc/TableOptionsInfo.cs (C#)
using System;  
  
namespace YariSoft.DBCommander.Misc  
{  
    [Serializable]  
    public class TableOptionsInfo  
    {  
        #region Local variables  
        private bool    _identityOff            = false;  
        #endregion  
  
        #region Properties  
        public bool IdentityOff  
        {  
            get{ return this._identityOff; }  
            set{ this._identityOff = value; }  
        }  
        #endregion  
  
        #region Constructor/Destructor  
        public TableOptionsInfo()  
        {  
        }  
        #endregion  
    }  
}