This commit is contained in:
21
server/AyaNova/models/WorkOrderState.cs
Normal file
21
server/AyaNova/models/WorkOrderState.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
public class WorkOrderState
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
|
||||
[Required]
|
||||
public long WorkOrderId { get; set; }
|
||||
[Required]
|
||||
public long WorkOrderStatusId { get; set; }
|
||||
public DateTime Created { get; set; } = DateTime.UtcNow;
|
||||
[Required]
|
||||
public long UserId { get; set; }
|
||||
|
||||
}//eoc
|
||||
}//eons
|
||||
Reference in New Issue
Block a user