2025-06-06 14:57:20 +08:00

25 lines
528 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.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>();
}
}