32 lines
689 B
C#
32 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_lighting_strategy
|
|
{
|
|
// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public List<lighting_strategyData> data { get; set; }
|
|
}
|
|
public class lighting_strategyData
|
|
{
|
|
public string StrategyName { get; set; }
|
|
public int StrategyState { get; set;}
|
|
}
|
|
}
|