AI-Studio/app/MindWork AI Studio/Tools/Rust/VisualBriefingImageResponse.cs
2026-07-28 20:44:33 +02:00

16 lines
611 B
C#

namespace AIStudio.Tools.Rust;
/// <summary>
/// Contains a locally prepared visual-briefing image.
/// </summary>
/// <param name="DataUrl">The prepared image as a Data URL.</param>
/// <param name="MimeType">The preserved supported image MIME type.</param>
/// <param name="Width">The prepared pixel width.</param>
/// <param name="Height">The prepared pixel height.</param>
/// <param name="WasResized">Whether the maximum-edge policy resized the image.</param>
public sealed record VisualBriefingImageResponse(
string DataUrl,
string MimeType,
uint Width,
uint Height,
bool WasResized);