using System; #nullable enable namespace Terminal.Gui { /// /// Event arguments for the events. /// public class ThicknessEventArgs : EventArgs { /// /// Initializes a new instance of /// public ThicknessEventArgs () { } /// /// The new Thickness. /// public Thickness Thickness { get; set; } = Thickness.Empty; } }