ConfigurationManagerEventArgs.cs 406 B

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