blob: e99aacc83a38482e86b63b36c8c086aeacea44a0 (
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.Integration.Observables
{
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,
}
}
|