mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:52:10 +00:00
28 lines
830 B
C#
28 lines
830 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Describes one visual asset without embedding its bytes.
|
|
/// </summary>
|
|
[JsonUnmappedMemberHandling(JsonUnmappedMemberHandling.Disallow)]
|
|
public sealed class VisualBriefingAssetPlanItem
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the stable visual asset identifier.
|
|
/// </summary>
|
|
[JsonRequired]
|
|
public string AssetId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the model's visual description for presentation decisions.
|
|
/// </summary>
|
|
[JsonRequired]
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the target-language text alternative.
|
|
/// </summary>
|
|
[JsonRequired]
|
|
public string AltText { get; set; } = string.Empty;
|
|
} |