25 lines
504 B
C#
Raw Normal View History

2025-07-01 10:37:38 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_AllHeartRates.Commons.Dto.Device
{
/// <summary>
///设备数量
/// </summary>
public class DeviceNumberDto
{
/// <summary>
/// 在线数量
/// </summary>
public int OnLineCount { get; set; }
/// <summary>
/// 离线数量
/// </summary>
public int OffLineCount { get; set; }
}
}