namespace Terminal.Gui;
///
/// Describes a request to render a given at a given .
/// Requires that the terminal and both support sixel.
///
public class SixelToRender
{
///
/// gets or sets the encoded sixel data. Use to convert bitmaps
/// into encoded sixel data.
///
public string SixelData { get; set; }
///
/// gets or sets where to move the cursor to before outputting the .
///
public Point ScreenPosition { get; set; }
}