aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Enumerations/TechMotors.cs
blob: e0fc5120664e85589d1e5b4fcd7a6f62944733d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.ComponentModel;

namespace Tango.BL.Enumerations
{
    public enum TechMotors
    {

        /// <summary>
        /// (Dispenser 1 Motor)
        /// </summary>
        [Description("Dispenser 1 Motor")]
        Dispenser1Motor = 0,

        /// <summary>
        /// (Dancer 1 Motor)
        /// </summary>
        [Description("Dancer 1 Motor")]
        Dancer1Motor = 1,

        /// <summary>
        /// (Dancer 2 Motor)
        /// </summary>
        [Description("Dancer 2 Motor")]
        Dancer2Motor = 2,

    }
}