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 }