namespace NetAdmin.Domain.Dto.Sys; /// /// 响应:获取条形图数据 /// public sealed record GetBarChartRsp : DataAbstraction { /// /// 时间戳 /// public DateTime Timestamp { get; init; } /// /// 值 /// public int Value { get; init; } }