After code cleanup
This commit is contained in:
@@ -1,8 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AyaNovaQBI
|
||||
{
|
||||
@@ -10,15 +6,15 @@ namespace AyaNovaQBI
|
||||
/// <summary>
|
||||
/// DTO object to receive list from server of billable workorders
|
||||
/// </summary>
|
||||
internal class WorkOrderAccountingListItem
|
||||
public 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; }
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user