This commit is contained in:
20
server/AyaNova/models/CustomerWorkOrder.cs
Normal file
20
server/AyaNova/models/CustomerWorkOrder.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
//Customer version of workorder which is the limited amount of data allowed to be viewed by Customer based on corresponding actual workorder
|
||||
public class CustomerWorkOrder
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long Serial { get; set; }
|
||||
public string Wiki { get; set; }
|
||||
public string CustomerViz { get; set; }
|
||||
public string CustomerReferenceNumber { get; set; }
|
||||
public string CustomerContactName { get; set; }
|
||||
public DateTime? ServiceDate { get; set; }
|
||||
public string InvoiceNumber { get; set; }
|
||||
public bool CanWiki {get;set;}
|
||||
public bool CanAttachments {get;set;}
|
||||
}//eoc
|
||||
}//eons
|
||||
|
||||
Reference in New Issue
Block a user