using System.Text.Json.Serialization;
namespace AIStudio.Assistants.VisualBriefing;
///
/// Identifies an allowed cross-axis alignment in the presentation layout.
///
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum VisualBriefingAlignment
{
/// Aligns content at the start edge.
START,
/// Centers content.
CENTER,
/// Aligns content at the end edge.
END,
/// Stretches content across the available space.
STRETCH,
}