20 lines
434 B
C#
20 lines
434 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_lighting_control
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<lighting_controlData> data { get; set; }
|
|
}
|
|
public class lighting_controlData
|
|
{
|
|
public string TypeName { get; set; }
|
|
}
|
|
}
|