This commit is contained in:
32
AyaNovaQBI/WorkOrderState.cs
Normal file
32
AyaNovaQBI/WorkOrderState.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user