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
290 B
C#
Raw Normal View History

using LinqToDB.Mapping;
2022-04-29 14:59:24 +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; }
}
}