You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
528 B
24 lines
528 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Entity.Api.Req
|
|
{
|
|
/// <summary>
|
|
/// 提交灯光日间时间
|
|
/// </summary>
|
|
public class SetDayTimeReq
|
|
{
|
|
/// <summary>
|
|
/// 日 灯光开启时间
|
|
/// </summary>
|
|
public string LightDayStartTime { get; set; }
|
|
/// <summary>
|
|
/// 日 灯光关闭时间
|
|
/// </summary>
|
|
public string LightDayEndTime { get; set; }
|
|
}
|
|
}
|