AfRApay/AfRApay.Web/Backend/Tables/Card.cs
2023-02-06 02:37:36 +01:00

12 lines
308 B
C#

using LinqToDB.Mapping;
#pragma warning disable CS8618
namespace AfRApay.Web.Backend.Tables;
[Table(Name = "Cards")]
public class Card {
[Column(Name = "CardId"), PrimaryKey, NotNull] public string CardId { get; set; }
[Column(Name = "UserId"), NotNull] public int UserId { get; set; }
}