15 lines
460 B
C#
15 lines
460 B
C#
|
namespace FrontendWebApi.Models
|
|||
|
{
|
|||
|
public class Alert : Actor
|
|||
|
{
|
|||
|
public string building_tag { get; set; }
|
|||
|
public string floor_tag { get; set; }
|
|||
|
public string error_code { get; set; }
|
|||
|
public string error_type { get; set; }
|
|||
|
public string device_number { get; set; }
|
|||
|
public string error_reason { get; set; }
|
|||
|
public string ACKconfirm { get; set; }
|
|||
|
public string formId { get; set; }
|
|||
|
}
|
|||
|
}
|