using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SelfHelpClient.BO { public class ViewEntity { public long ID { get; set; } public int BillType { get; set; } public string CarNumber { get; set; } public int Number { get; set; } public DateTime Date { get; set; } } }