Files
ravenqbi/AyaNovaQBI/WorkOrderAccountingListItem.cs
2022-07-09 19:15:07 +00:00

21 lines
597 B
C#

using System;
namespace AyaNovaQBI
{
/// <summary>
/// DTO object to receive list from server of billable workorders
/// </summary>
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; }
}
}