mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-17 21:12:11 +00:00
18 lines
583 B
C#
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; }
|
|
} |