This commit is contained in:
2022-07-12 00:32:03 +00:00
parent 22afcee35f
commit 06b4cc86fa
4 changed files with 177 additions and 21 deletions

View File

@@ -0,0 +1,32 @@
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
}