using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SelfHelpClient.BO { public class WashCarPrint { public long BillID { get; set; } public DateTime Date { get; set; } public DateTime LastPrintTime { get; set; } public int RowIndex { get; set; } public int PrintDegree { get; set; } public string CarNumber { get; set; } public int CarSize { get; set; } public decimal Fee { get; set; } public string WeightMan { get; set; } } }