25 lines
721 B
C#
25 lines
721 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AyaNovaQBI
|
|
{
|
|
|
|
/// <summary>
|
|
/// DTO object to receive list from server of billable workorders
|
|
/// </summary>
|
|
internal class WorkOrderAccountingListItem
|
|
{
|
|
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; }
|
|
}
|
|
}
|