using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_AllHeartRates.Commons.Dto
{
///
/// 通用图表Dto
///
public class ChartDataDto
{
///
/// 横轴
///
public List AxisX { get; set; } = new List();
///
/// 纵轴
///
public List AxisY { get; set; } = new List();
}
}