20211124_ZNZT_upperpc/MonitoringTechnology/Models/ElectricalEnvironmentalModel.cs

46 lines
744 B
C#
Raw Normal View History

2023-02-03 00:31:48 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MonitoringTechnology.Models
{
public class ElectricalEnvironmentalModel
{
public int F_SerialNo
{
get;
set;
}
public DateTime F_CreateDate
{
get;
set;
}
public DateTime F_DatetimeSensor
{
get;
set;
}
public double F_Tem
{
get;
set;
}
public double F_Hum
{
get;
set;
}
public double F_Pressure
{
get;
set;
}
}
}