namespace Spectre.Console;
///
/// Represents a size.
///
[DebuggerDisplay("{Width,nq}x{Height,nq}")]
public struct Size
{
///
/// Gets the width.
///
public int Width { get; }
///
/// Gets the height.
///
public int Height { get; }
///
/// Initializes a new instance of the struct.
///
/// The width.
/// The height.
public Size(int width, int height)
{
Width = width;
Height = height;
}
}