123456789101112131415161718 |
- using System;
- #nullable enable
- namespace Terminal.Gui.Configuration {
- /// <summary>
- /// Event arguments for the <see cref="ConfigurationManager"/> events.
- /// </summary>
- public class ConfigurationManagerEventArgs : EventArgs {
- /// <summary>
- /// Initializes a new instance of <see cref="ConfigurationManagerEventArgs"/>
- /// </summary>
- public ConfigurationManagerEventArgs ()
- {
- }
- }
- }
|