namespace Engine.AI.Commands;
///
/// Request a screenshot of the current rendered frame for AI visual analysis.
///
public sealed record CaptureScreenshotCommand : AiCommand
{
///
/// Output file path. If omitted, the engine chooses a default path.
///
public string? OutputPath { get; init; }
}