Files
ravenqbi/AyaNovaQBI/WorkOrderState.cs
2022-07-12 00:32:03 +00:00

33 lines
783 B
C#

using System;
namespace AyaNovaQBI
{
public class WorkOrderState
{
public long Id { get; set; }
public uint Concurrency { get; set; }
public long WorkOrderId { get; set; }
public long WorkOrderStatusId { get; set; }
public DateTime Created { get; set; } = DateTime.UtcNow;
public long UserId { get; set; }
public string UserViz { get; set; }
public string NameViz { get; set; }
public string ColorViz { get; set; }
public bool CompletedViz { get; set; }
public bool LockedViz { get; set; }
public uint NewWOConcurrency { get; set; }
}//eoc
}