24 lines
		
	
	
		
			597 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			597 B
		
	
	
	
		
			C#
		
	
	
	
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; }
 | 
						|
 | 
						|
 | 
						|
    }
 | 
						|
}
 |