14 lines
		
	
	
		
			370 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			370 B
		
	
	
	
		
			C#
		
	
	
	
namespace langguanApi.Model.Dto
 | 
						|
{
 | 
						|
    public class DeviceDto
 | 
						|
    {
 | 
						|
        public string deviceMN { get; set; }
 | 
						|
        public string Name { get; set; }
 | 
						|
        public string Ip { get; set; }
 | 
						|
        public double lng { get; set; }
 | 
						|
        public double lat { get; set; }
 | 
						|
        public string desricption { get; set; }
 | 
						|
        public int state { get; set; }
 | 
						|
    }
 | 
						|
}
 |