21 lines
775 B
C#
21 lines
775 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;}
|
|
}//eoc
|
|
}//eons
|
|
|