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