25 lines
504 B
C#
25 lines
504 B
C#
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; }
|
|
}
|
|
}
|