mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-12-22 22:15:49 +08:00
17 lines
355 B
C#
17 lines
355 B
C#
namespace NetAdmin.Domain.Dto.Sys;
|
|
|
|
/// <summary>
|
|
/// 响应:获取条形图数据
|
|
/// </summary>
|
|
public sealed record GetBarChartRsp : DataAbstraction
|
|
{
|
|
/// <summary>
|
|
/// 时间戳
|
|
/// </summary>
|
|
public DateTime Timestamp { get; init; }
|
|
|
|
/// <summary>
|
|
/// 值
|
|
/// </summary>
|
|
public int Value { get; init; }
|
|
} |