mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 02:22:17 +00:00
22 lines
758 B
C#
22 lines
758 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Defines the strict structured response returned by the design agent.
|
||
|
|
/// </summary>
|
||
|
|
[JsonUnmappedMemberHandling(JsonUnmappedMemberHandling.Disallow)]
|
||
|
|
public sealed class VisualBriefingDesignResponse
|
||
|
|
{
|
||
|
|
/// <summary>Gets or sets the design contract version.</summary>
|
||
|
|
[JsonRequired]
|
||
|
|
public int ContractVersion { get; set; }
|
||
|
|
|
||
|
|
/// <summary>Gets or sets the bounded MindWork design profile.</summary>
|
||
|
|
[JsonRequired]
|
||
|
|
public VisualBriefingDesignProfile Profile { get; set; }
|
||
|
|
|
||
|
|
/// <summary>Gets or sets the validated presentation layout.</summary>
|
||
|
|
[JsonRequired]
|
||
|
|
public VisualBriefingLayoutNode Layout { get; set; } = new();
|
||
|
|
}
|