using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Server { public class RootDataOfCard { public int CardID { get; set; } public string NumberCard { get; set; } public string CardExpDate { get; set; } public decimal Balance { get; set; } public int IDCardType { get; set; } public Nullable IDCardIssuer { get; set; } public string CardHolder { get; set; } } }