zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Models/Devices/DeviceStatisticGetResponseModel.cs
2023-12-05 17:22:48 +08:00

14 lines
317 B
C#

namespace ZeroFramework.DeviceCenter.Application.Models.Devices
{
public class DeviceStatisticGetResponseModel
{
public int TotalCount { get; set; }
public int OnlineCount { get; set; }
public int OfflineCount { get; set; }
public int UnactiveCount { get; set; }
}
}