using System;
#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 {
///
/// The name of the new active theme..
///
public string NewTheme { get; set; } = string.Empty;
///
/// Initializes a new instance of
///
public ThemeManagerEventArgs (string newTheme)
{
NewTheme = newTheme;
}
}
}