22 lines
505 B
C#
22 lines
505 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_single_control
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<single_controlData> data { get; set; }
|
|
}
|
|
public class single_controlData
|
|
{
|
|
public string Id { get; set; }
|
|
public string name { get; set; }
|
|
public string State { get; set; }
|
|
}
|
|
}
|