23 lines
591 B
C#
23 lines
591 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FrontendWorkerService.Models
|
|
{
|
|
public class Device
|
|
{
|
|
public string device_guid { get; set; }
|
|
public string building_guid { get; set; }
|
|
public string main_system_guid { get; set; }
|
|
public string sub_system_guid { get; set; }
|
|
public string floor_guid { get; set; }
|
|
public string full_name { get; set; }
|
|
public string device_number { get; set; }
|
|
}
|
|
|
|
public class DeviceSubscrip
|
|
{
|
|
public string device_number { get; set; }
|
|
}
|
|
}
|