22 lines
615 B
C#
22 lines
615 B
C#
using System;
|
|
|
|
namespace AyaNovaQBI
|
|
{
|
|
/// <summary>
|
|
/// Working list for selection by user in grid
|
|
/// </summary>
|
|
public class WorkOrderGridListItem
|
|
{
|
|
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; }
|
|
|
|
public bool Linked { get; set; }
|
|
}
|
|
}
|