This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
trainav/trainav.web/database/Tables/DbInfo.cs

9 lines
283 B
C#
Raw Normal View History

using LinqToDB.Mapping;
2022-05-03 00:20:02 +02:00
namespace trainav.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; }
}