26 lines
322 B
C#
26 lines
322 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Domain
|
|||
|
|
{
|
|||
|
|
public enum CurtainCtrl
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 开
|
|||
|
|
/// </summary>
|
|||
|
|
Open = 0x01,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 关
|
|||
|
|
/// </summary>
|
|||
|
|
Close = 0x02,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 停止
|
|||
|
|
/// </summary>
|
|||
|
|
Stop = 0x03,
|
|||
|
|
}
|
|||
|
|
}
|