24 lines
528 B
C#
Raw Normal View History

2025-06-26 17:36:12 +08:00
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>();
}
}