ConfigurationUpdateEventArgs.cs 484 B

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