diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-06 17:23:32 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-06 17:23:32 -0400 |
| commit | 53450bd514eec97d58eb18b8a01feab36475826b (patch) | |
| tree | 5cd1b4013852619b0e108a8f2442ab893a924441 /MediaBrowser.Common/Updates/InstallationEventArgs.cs | |
| parent | b3054a6a2216e36cc37279a1fc0f4c14e6668c8f (diff) | |
added a notifications service
Diffstat (limited to 'MediaBrowser.Common/Updates/InstallationEventArgs.cs')
| -rw-r--r-- | MediaBrowser.Common/Updates/InstallationEventArgs.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Updates/InstallationEventArgs.cs b/MediaBrowser.Common/Updates/InstallationEventArgs.cs new file mode 100644 index 0000000000..2c3a805de1 --- /dev/null +++ b/MediaBrowser.Common/Updates/InstallationEventArgs.cs @@ -0,0 +1,17 @@ +using MediaBrowser.Model.Updates; +using System; + +namespace MediaBrowser.Common.Updates +{ + public class InstallationEventArgs + { + public InstallationInfo InstallationInfo { get; set; } + + public PackageVersionInfo PackageVersionInfo { get; set; } + } + + public class InstallationFailedEventArgs : InstallationEventArgs + { + public Exception Exception { get; set; } + } +} |
