using System.Text;
namespace Terminal.Gui;
///
/// Represents a single row/column within the . Includes the glyph and the foreground/background colors.
///
public class Cell {
///
/// The glyph to draw.
///
public Rune? Rune { get; set; }
///
/// The foreground color to draw the glyph with.
///
public Attribute? Attribute { get; set; }
}