geboshi_V1/LeatherProject/GeBoShi/SysCtrl/SysEnum.cs

49 lines
969 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GeBoShi.SysCtrl
{
public enum LightChannelEnum
{
[Description("通道1")]
CH1 = 1,
[Description("通道2")]
CH2 = 2,
[Description("通道3")]
CH3 = 3,
[Description("通道4")]
CH4 = 4,
[Description("通道5")]
CH5 = 5,
[Description("通道6")]
CH6 = 6,
}
public enum DOName
{
= 10,
绿 = 11,
= 12,
= 13,
= 0,
= 9,
= 1,
= 15,
}
public enum DIName
{
= 14,
= 1,
= 2,
= 11,
}
}