aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs')
-rw-r--r--MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs b/MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs
deleted file mode 100644
index 310e2aa63..000000000
--- a/MediaBrowser.Common/Configuration/ConfigurationUpdateEventArgs.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-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; }
- }
-}