mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 07:22:16 +00:00
22 lines
600 B
C#
22 lines
600 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Identifies an allowed cross-axis alignment in the presentation layout.
|
||
|
|
/// </summary>
|
||
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingAlignment>))]
|
||
|
|
public enum VisualBriefingAlignment
|
||
|
|
{
|
||
|
|
/// <summary>Aligns content at the start edge.</summary>
|
||
|
|
START,
|
||
|
|
|
||
|
|
/// <summary>Centers content.</summary>
|
||
|
|
CENTER,
|
||
|
|
|
||
|
|
/// <summary>Aligns content at the end edge.</summary>
|
||
|
|
END,
|
||
|
|
|
||
|
|
/// <summary>Stretches content across the available space.</summary>
|
||
|
|
STRETCH,
|
||
|
|
}
|