diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-29 13:35:05 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-29 13:35:05 -0400 |
| commit | 933443c2b948d43e4ec41d7f8c11fd6ab3a0ab7e (patch) | |
| tree | c2762b5a3b4da01c6037e086a8aebb987bcdafe7 /MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs | |
| parent | 690491979453b8f67b581f2035ede2e136e74a87 (diff) | |
added modular configuration
Diffstat (limited to 'MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs')
| -rw-r--r-- | MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs b/MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs new file mode 100644 index 000000000..310e2aa63 --- /dev/null +++ b/MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs @@ -0,0 +1,18 @@ +using System; + +namespace MediaBrowser.Common.Configuration +{ + public class ConfigurationUpdateEventArgs : EventArgs + { + /// <summary> + /// Gets or sets the key. + /// </summary> + /// <value>The key.</value> + public string Key { get; set; } + /// <summary> + /// Gets or sets the new configuration. + /// </summary> + /// <value>The new configuration.</value> + public object NewConfiguration { get; set; } + } +} |
