using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Live_Scoring_V1.Classes { public class Cards { public int FID { get; set; } public int SID { get; set; } public int EventID { get; set; } public int PlayerID { get; set; } public int? ReplacementID { get; set; } public string Identfier { get; set; } } }