This commit is contained in:
2022-07-11 20:58:50 +00:00
parent 33b564ad63
commit 4dd2df03cf
9 changed files with 233 additions and 63 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
{/// <summary>
/// Indicates status of task
/// </summary>
public enum WorkOrderItemTaskCompletionType : int
{
/// <summary>
/// Not finished
/// </summary>
Incomplete = 1,
/// <summary>
/// Finished
/// </summary>
Complete = 2,
/// <summary>
/// Not relevant
/// </summary>
NotApplicable = 3,
Failed = 4
}
}