24 lines
680 B
C#
24 lines
680 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Traffic.Data.Models
|
|||
|
{
|
|||
|
public class Malfunction
|
|||
|
{
|
|||
|
public int UserId { get; set; }
|
|||
|
public string County { get; set; }
|
|||
|
public string Area { get; set; }
|
|||
|
public string Siteid { get; set; }
|
|||
|
public string SiteName { get; set; }
|
|||
|
public string EventType { get; set; }
|
|||
|
public string CompanyCode { get; set; }
|
|||
|
public string DeviceType { get; set; }
|
|||
|
public string DeviceID { get; set; }
|
|||
|
public string Message { get; set; }
|
|||
|
public int Timestamp { get; set; }
|
|||
|
}
|
|||
|
}
|