using System;
namespace MediaBrowser.Common.Configuration
{
public class ConfigurationUpdateEventArgs : EventArgs
{
///
/// Gets or sets the key.
///
/// The key.
public string Key { get; set; }
///
/// Gets or sets the new configuration.
///
/// The new configuration.
public object NewConfiguration { get; set; }
}
}