using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Operation
{
public enum MachineStatuses
{
[Description("Standby")]
Standby,
[Description("Ready To Dye")]
ReadyToDye,
[Description("Dyeing")]
Printing,
[Description("Service")]
Service,
[Description("Error")]
Error,
}
}