using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.ComponentModel;
namespace Tango.BL.Enumerations
{
public enum TechMotors
{
///
/// (Cleaning Head Motor)
///
[Description("Cleaning Head Motor")]
MOTO_DH_CLEANHEAD = 0,
///
/// (Cleaning Mechanism Motor)
///
[Description("Cleaning Mechanism Motor")]
MOTO_DH_CLEANMECH = 1,
///
/// (Dyeing Head Lid Motor)
///
[Description("Dyeing Head Lid Motor")]
MOTO_DH_LID = 2,
///
/// (Dryer Main Motor)
///
[Description("Dryer Main Motor")]
MOTO_DRYER_DRIVING = 3,
///
/// (Drier Lid Motor)
///
[Description("Drier Lid Motor")]
MOTO_DRYER_LID = 4,
///
/// (Drier Thread Loading Arm Motor)
///
[Description("Drier Thread Loading Arm Motor")]
MOTO_DRYER_LOADARM = 5,
///
/// (Dispenser 1 Motor)
///
[Description("Dispenser 1 Motor")]
MOTO_DISPENSER_1 = 6,
///
/// (Dispenser 2 Motor)
///
[Description("Dispenser 2 Motor")]
MOTO_DISPENSER_2 = 7,
///
/// (Dispenser 3 Motor)
///
[Description("Dispenser 3 Motor")]
MOTO_DISPENSER_3 = 8,
///
/// (Dispenser 4 Motor)
///
[Description("Dispenser 4 Motor")]
MOTO_DISPENSER_4 = 9,
///
/// (Dispenser 5 Motor)
///
[Description("Dispenser 5 Motor")]
MOTO_DISPENSER_5 = 10,
///
/// (Dispenser 6 Motor)
///
[Description("Dispenser 6 Motor")]
MOTO_DISPENSER_6 = 11,
///
/// (Dispenser 7 Motor)
///
[Description("Dispenser 7 Motor")]
MOTO_DISPENSER_7 = 12,
///
/// (Dispenser 8 Motor)
///
[Description("Dispenser 8 Motor")]
MOTO_DISPENSER_8 = 13,
///
/// (Winder Screw Motor)
///
[Description("Winder Screw Motor")]
MOTO_SCREW = 14,
///
/// (Winder Motor)
///
[Description("Winder Motor")]
MOTO_WINDER = 15,
///
/// (Pooler Dancer Adjustment)
///
[Description("Pooler Dancer Adjustment")]
MOTO_LDANCER1 = 16,
///
/// (Winder Dancer Adjustment #1)
///
[Description("Winder Dancer Adjustment #1")]
MOTO_LDANCER2 = 17,
///
/// (Pooler Motor)
///
[Description("Pooler Motor")]
MOTO_LDRIVING = 18,
///
/// (Pooler Loading Motor)
///
[Description("Pooler Loading Motor")]
MOTO_LLOADING = 19,
///
/// (Pooler Loading Pivot Arm Motor)
///
[Description("Pooler Loading Pivot Arm Motor")]
MOTO_LPIVOT1 = 20,
///
/// (Feeder Dancer Adjustment Motor)
///
[Description("Feeder Dancer Adjustment Motor")]
MOTO_RDANCER = 21,
///
/// (Feeder Motor)
///
[Description("Feeder Motor")]
MOTO_RDRIVING = 22,
///
/// (Right Loading Arm Motor)
///
[Description("Right Loading Arm Motor")]
MOTO_RLOADARM = 23,
///
/// (Right Loading Motor)
///
[Description("Right Loading Motor")]
MOTO_RLOADING = 24,
///
/// (Spare 1 Motor)
///
[Description("Spare 1 Motor")]
MOTO_SPARE1_1 = 25,
///
/// (Spare 2 Motor)
///
[Description("Spare 2 Motor")]
MOTO_SPARE1_2 = 26,
///
/// (Spare 3 Motor)
///
[Description("Spare 3 Motor")]
MOTO_SPARE2_1 = 27,
///
/// (Spare 4 Motor)
///
[Description("Spare 4 Motor")]
MOTO_SPARE2_2 = 28,
}
}