14 lines
449 B
C#
14 lines
449 B
C#
namespace Backend.Models
|
|
{
|
|
public class DeviceDisasterOutput
|
|
{
|
|
public string device_guid { get; set; }
|
|
public string device_building_tag { get; set; }
|
|
public string device_system_tag { get; set; }
|
|
public string device_name_tag { get; set; }
|
|
public string device_floor_tag { get; set; }
|
|
public string device_serial_tag { get; set; }
|
|
public string device_number { get; set; }
|
|
}
|
|
}
|