18 lines
460 B
C#
18 lines
460 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.ServiceApp.DroneScreenDisplay.Response
|
|||
|
|
{
|
|||
|
|
public class ChartCaseInfo
|
|||
|
|
{
|
|||
|
|
public string Id { get; set; }
|
|||
|
|
public string createtime { get; set; }
|
|||
|
|
public int? is_illegal { get; set; }
|
|||
|
|
public string measure_name { get; set; }
|
|||
|
|
public int? handle_status_id { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|