Files
Web_CRICS_Server_VS2010_Prod/CommonEntity/AirConditionAlert.cs

18 lines
461 B
C#
Raw Normal View History

2025-12-17 10:51:23 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CommonEntity
{
public struct AirConditionAlert
{
public string HotelCode { get; set; }
public string HostNumber { get; set; }
public string DeviceAddress { get; set; }
public int SetTemperature { get; set; }
public int CurrentTemperature { get; set; }
public DateTime UpdateDateTime { get; set; }
}
}