zotan.pw-web/zotan.pw-web/database/Tables/DbInfo.cs
2022-11-20 03:06:51 +01:00

10 lines
284 B
C#

using LinqToDB.Mapping;
namespace zotanpw_web.database.Tables;
[Table(Name = "DbInfo")]
public class DbInfo {
[Column(Name = "ID"), PrimaryKey, Identity, NotNull] public int Id { get; set; }
[Column(Name = "DbVer"), NotNull] public int DbVer { get; set; }
}