using System.Text.Json.Serialization;
namespace AIStudio.Assistants.VisualBriefing;
///
/// Defines one named numeric series in a chart specification.
///
[JsonUnmappedMemberHandling(JsonUnmappedMemberHandling.Disallow)]
[CanonicalJsonShape("57679f28")]
public sealed class VisualBriefingChartSeries
{
/// Gets or sets the series name.
[JsonRequired]
public string Name { get; set; } = string.Empty;
/// Gets or sets the ordered numeric values.
[JsonRequired]
public List Values { get; set; } = [];
}