ConfigurationManagerEventArgs.cs 677 B

1234567891011121314151617181920212223
  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. }
  9. //public class ConfigurationLoadEventArgs : ResultEventArgs<SettingsScope>
  10. //{
  11. // public ConfigLocations Location { get; }
  12. // public string? Path { get; }
  13. // public ConfigurationLoadEventArgs (ConfigLocations location, string? path)
  14. // {
  15. // Location = location;
  16. // Path = path;
  17. // }
  18. //}