using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model.APIItem { public class EnvironmentalMonitoringItem { public DateTime? UpdateDate { get; set; } public double? Pm25 { get; set; } public double? Pm10 { get; set; } public double? Noise { get; set; } public double? Tem { get; set; } public double? Hum { get; set; } public double? Wp { get; set; } public double? Ws { get; set; } public double? Wd8 { get; set; } public double? Wd360 { get; set; } public double? Tsp { get; set; } public double? Atm { get; set; } public double? Lux { get; set; } public double? Co { get; set; } public double? So2 { get; set; } public double? No2 { get; set; } public double? O3 { get; set; } public string DeviceId { get; set; } public string ProjectId { get; set; } } }