AfRApay/AfRApay.Web/Backend/Tables/Card.cs

12 lines
308 B
C#
Raw Normal View History

2023-02-06 02:23:00 +01:00
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; }
}