blob: 4ceb20295729529b21f1356492c3c630cb747dfe (
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 TechIos
{
/// <summary>
/// (Digital Out 1)
/// </summary>
[Description("Digital Out 1")]
PIN0 = 0,
/// <summary>
/// (Digital Out 2)
/// </summary>
[Description("Digital Out 2")]
PIN1 = 1,
/// <summary>
/// (Digital In 3)
/// </summary>
[Description("Digital In 3")]
PIN2 = 2,
}
}
|