using System; namespace AyaNovaQBI { /// /// DTO object to receive list from server of billable workorders /// public class WorkOrderAccountingListItem { public long id { get; set; } public long customerId { get; set; } public string customerName { get; set; } public string workorderStatusName { get; set; } public long serial { get; set; } public DateTime? serviceDate { get; set; } public string color { get; set; } public string projectName { get; set; } } }