CNCEC_SUBQHSE_WUHUAN/SGGL/Model/APIItem/AIAlarmEventItem.cs

24 lines
597 B
C#
Raw Normal View History

2025-08-09 12:27:29 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.APIItem
{
public class AIAlarmEventItem
{
public string device_id { get; set; }
public string device_version { get; set; }
public DateTime? date { get; set; }
public string timestamp { get; set; }
public string label { get; set; }
public string alias { get; set; }
public int? count { get; set; }
public object extend { get; set; }
public string img_base64 { get; set; }
}
}