#nullable enable
namespace Terminal.Gui;
/// Event arguments for the events.
public class ConfigurationManagerEventArgs : EventArgs
{
/// Initializes a new instance of
public ConfigurationManagerEventArgs () { }
}
/// Event arguments for the events.
public class ThemeManagerEventArgs : EventArgs
{
/// Initializes a new instance of
public ThemeManagerEventArgs (string newTheme) { NewTheme = newTheme; }
/// The name of the new active theme.
public string NewTheme { get; set; } = string.Empty;
}