using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Domain
{
///
/// 灯光模式设置
///
public class LightSceneSetting
{
///
/// 控制类型:0/开关模式,1/定时模式
///
public int Type;
///
/// 开关模式下有效
///
public bool OnOff;
///
/// 定时模式下有效,定时启用标志
///
public bool TimeFlag;
///
/// 定时开始时间1
///
public string TimeStart1;
///
/// 定时结束时间1
///
public string TimeEnd1;
///
/// 定时开始时间2
///
public string TimeStart2;
///
/// 定时结束时间2
///
public string TimeEnd2;
///
/// 定时开始时间3
///
public string TimeStart3;
///
/// 定时结束时间3
///
public string TimeEnd3;
///
/// 灯光模式ID
///
public int SceneID;
}
}