using System; namespace AyaNova.Models { 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; } } }