This commit is contained in:
2022-07-08 23:37:11 +00:00
parent cd1e43081f
commit 1cd70a5be8
6 changed files with 398 additions and 368 deletions

View File

@@ -6,15 +6,19 @@ using System.Threading.Tasks;
namespace AyaNovaQBI
{
/// <summary>
/// DTO object to receive list from server of billable workorders
/// </summary>
internal 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; }
internal long Id { get; set; }
internal long CustomerId { get; set; }
internal string CustomerName { get; set; }
internal string WorkorderStatusName { get; set; }
internal long Serial { get; set; }
internal DateTime? ServiceDate { get; set; }
internal string Color { get; set; }
internal string ProjectName { get; set; }
}
}