📄 tableoptionsinfo.cs
字号:
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
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -