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