ConfigurationUpdateEventArgs.cs 535 B

12345678910111213141516171819202122
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. namespace MediaBrowser.Common.Configuration
  5. {
  6. public class ConfigurationUpdateEventArgs : EventArgs
  7. {
  8. /// <summary>
  9. /// Gets or sets the key.
  10. /// </summary>
  11. /// <value>The key.</value>
  12. public string Key { get; set; }
  13. /// <summary>
  14. /// Gets or sets the new configuration.
  15. /// </summary>
  16. /// <value>The new configuration.</value>
  17. public object NewConfiguration { get; set; }
  18. }
  19. }