Files
raven/server/AyaNova/models/CustomerWorkOrder.cs
2021-11-19 00:53:34 +00:00

22 lines
817 B
C#

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;}
public bool CanReport {get;set;}
}//eoc
}//eons