mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 08:02:23 +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,
|
||
|
|
}
|