ConfigurationManagerEventArgs.cs 659 B

123456789101112131415161718192021
  1. namespace Terminal.Gui.Configuration;
  2. /// <summary>Event arguments for the <see cref="ConfigurationManager"/> events.</summary>
  3. public class ConfigurationManagerEventArgs : EventArgs
  4. {
  5. /// <summary>Initializes a new instance of <see cref="ConfigurationManagerEventArgs"/></summary>
  6. public ConfigurationManagerEventArgs () { }
  7. }
  8. //public class ConfigurationLoadEventArgs : ResultEventArgs<SettingsScope>
  9. //{
  10. // public ConfigLocations Location { get; }
  11. // public string? Path { get; }
  12. // public ConfigurationLoadEventArgs (ConfigLocations location, string? path)
  13. // {
  14. // Location = location;
  15. // Path = path;
  16. // }
  17. //}