using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.SpsDataCourier { public class ListedCardInfo { public ListedType ListedType { get; set; } public long Gid { get; set; } public string CardNo { get; set; } public DateTime ListedDate { get; set; } public long AccountGid { get; set; } public string AccountId { get; set; } public byte CardType { get; set; } public int DiscountNo { get; set; } public string Reason { get; set; } public byte UploadFlag { get; set; } public byte OperationType { get; set; } } }