using System.Text.Json.Serialization;
namespace AIStudio.Assistants.VisualBriefing;
///
/// Selects the desktop presentation direction of a chronological timeline.
///
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum VisualBriefingTimelineOrientation
{
/// Places timeline items along a horizontal track on sufficiently wide screens.
HORIZONTAL,
/// Places timeline items along a vertical track.
VERTICAL,
}