diff options
Diffstat (limited to 'MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs')
| -rw-r--r-- | MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs b/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs new file mode 100644 index 000000000..69dc1ee98 --- /dev/null +++ b/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs @@ -0,0 +1,9 @@ +using System; + +namespace MediaBrowser.Common.Updates +{ + public class InstallationFailedEventArgs : InstallationEventArgs + { + public Exception Exception { get; set; } + } +}
\ No newline at end of file |
