using System;
namespace Shared
{
[System.Serializable]
public class FanModule : Common
{
public FanModule ()
{
this.Type = DeviceType.FanModule;
DeviceTextID = SimpleControl.R.MyInternationalizationString.Fan;
}
///
/// 风速 1-8
///
public byte WindSpeed;
///
/// 开关 0表示关,开直接调风速
///
public byte Switch = 1;
}
}