This commit is contained in:
2022-07-08 18:48:02 +00:00
parent 25d785ba38
commit bb231437d0
3 changed files with 83 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
using System;
namespace AyaNova.Models
{
public class WorkOrderAccountingListItem
{
public long Id { get; set; }
public long CustomerId;
public string CustomerName;
public string WorkorderStatusName;
public long Serial { get; set; }
public DateTime? ServiceDate { get; set; }
public string Color { get; set; }
public string ProjectName { get; set; }
}
}