namespace Terminal.Gui;
/// Legend Style
public class SliderAttributes
{
/// Attribute for the Legends Container.
public Attribute? EmptyAttribute { get; set; }
/// Attribute for when the respective Option is NOT Set.
public Attribute? NormalAttribute { get; set; }
/// Attribute for when the respective Option is Set.
public Attribute? SetAttribute { get; set; }
}