21 lines
597 B
C#
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; }
|
|
}
|
|
}
|