mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-18 21:52:16 +00:00
16 lines
532 B
C#
16 lines
532 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Selects the desktop presentation direction of a chronological timeline.
|
|
/// </summary>
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingTimelineOrientation>))]
|
|
public enum VisualBriefingTimelineOrientation
|
|
{
|
|
/// <summary>Places timeline items along a horizontal track on sufficiently wide screens.</summary>
|
|
HORIZONTAL,
|
|
|
|
/// <summary>Places timeline items along a vertical track.</summary>
|
|
VERTICAL,
|
|
} |