AI-Studio/app/MindWork AI Studio/Assistants/VisualBriefing/VisualBriefingPlanSlot.cs
2026-07-30 19:36:52 +02:00

18 lines
583 B
C#

using System.Text.Json.Serialization;
namespace AIStudio.Assistants.VisualBriefing;
/// <summary>
/// Plans one semantic content slot owned by a component.
/// </summary>
[JsonUnmappedMemberHandling(JsonUnmappedMemberHandling.Disallow)]
public sealed class VisualBriefingPlanSlot
{
/// <summary>Gets or sets the globally unique slot identifier.</summary>
[JsonRequired]
public string SlotId { get; set; } = string.Empty;
/// <summary>Gets or sets the semantic purpose of the slot.</summary>
[JsonRequired]
public VisualBriefingSlotRole Role { get; set; }
}