using System;
namespace MediaBrowser.Common.Configuration
{
    /// 
    ///  for the ConfigurationUpdated event.
    /// 
    public class ConfigurationUpdateEventArgs : EventArgs
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The configuration key.
        /// The new configuration.
        public ConfigurationUpdateEventArgs(string key, object newConfiguration)
        {
            Key = key;
            NewConfiguration = newConfiguration;
        }
        /// 
        /// Gets the key.
        /// 
        /// The key.
        public string Key { get; }
        /// 
        /// Gets the new configuration.
        /// 
        /// The new configuration.
        public object NewConfiguration { get; }
    }
}