34 lines
441 B
C#
34 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Domain
|
|
{
|
|
/// <summary>
|
|
/// 空调模式
|
|
/// </summary>
|
|
public enum AirConditionMode
|
|
{
|
|
/// <summary>
|
|
/// 制冷
|
|
/// </summary>
|
|
Cold = 1,
|
|
|
|
/// <summary>
|
|
/// 制热
|
|
/// </summary>
|
|
Hot = 2,
|
|
|
|
/// <summary>
|
|
/// 送风
|
|
/// </summary>
|
|
Wind = 4,
|
|
|
|
/// <summary>
|
|
/// 除湿
|
|
/// </summary>
|
|
Dehumidification = 8
|
|
}
|
|
}
|