28 lines
836 B
C#
28 lines
836 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Text.Json.Serialization;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Traffic.Data.ViewModels
|
|||
|
{
|
|||
|
public class ReportMalfunctionViewModel
|
|||
|
{
|
|||
|
[JsonPropertyName("Time")]
|
|||
|
public string Time { get; set; }
|
|||
|
[JsonPropertyName("SiteId")]
|
|||
|
public string SiteId { get; set; }
|
|||
|
[JsonPropertyName("SiteName")]
|
|||
|
public string SiteName { get; set; }
|
|||
|
[JsonPropertyName("CompanyCode")]
|
|||
|
public string CompanyCode { get; set; }
|
|||
|
[JsonPropertyName("DeviceType")]
|
|||
|
public string DeviceType { get; set; }
|
|||
|
[JsonPropertyName("DeviceID")]
|
|||
|
public string DeviceID { get; set; }
|
|||
|
[JsonPropertyName("Message")]
|
|||
|
public string Message { get; set; }
|
|||
|
}
|
|||
|
}
|