ConfigurationManagerEventArgs.cs 359 B

1234567891011
  1. #nullable enable
  2. namespace Terminal.Gui.Configuration;
  3. /// <summary>Event arguments for the <see cref="ConfigurationManager"/> events.</summary>
  4. public class ConfigurationManagerEventArgs : EventArgs
  5. {
  6. /// <summary>Initializes a new instance of <see cref="ConfigurationManagerEventArgs"/></summary>
  7. public ConfigurationManagerEventArgs () { }
  8. }