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