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

12 lines
504 B
C#

using LinqToDB.Mapping;
namespace zotanpw_web.database.Tables;
[Table(Name = "Travelynx")]
public class TravelynxInfo {
[Column(Name = "ID"), PrimaryKey, Identity, NotNull] public int Id { get; set; }
[Column(Name = "CheckedIn"), NotNull] public bool CheckedIn { get; set; }
[Column(Name = "Train")] public string? Train { get; set; }
[Column(Name = "Destination")] public string? Destination { get; set; }
}