24 lines
528 B
C#
24 lines
528 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
namespace YD_AllHeartRates.Commons.Dto
|
|
{
|
|
/// <summary>
|
|
/// 通用图表Dto
|
|
/// </summary>
|
|
public class ChartDataDto
|
|
{
|
|
/// <summary>
|
|
/// 横轴
|
|
/// </summary>
|
|
public List<string> AxisX { get; set; } = new List<string>();
|
|
|
|
/// <summary>
|
|
/// 纵轴
|
|
/// </summary>
|
|
public List<int> AxisY { get; set; } = new List<int>();
|
|
}
|
|
}
|