using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_AllHeartRates.Commons.Dto.Device { /// ///设备数量 /// public class DeviceNumberDto { /// /// 在线数量 /// public int OnLineCount { get; set; } /// /// 离线数量 /// public int OffLineCount { get; set; } } }