zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Models/Devices/DeviceStatisticGetResponseModel.cs

14 lines
317 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
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; }
}
}