diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-08-14 15:56:54 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-14 15:56:54 -0400 |
| commit | 98cbf1c2de5151e88977143e415fe4a0b3cad7cf (patch) | |
| tree | bc46fcad410dc0ad22c5123da8d208b7d7ab3ad9 /MediaBrowser.Common/Updates | |
| parent | e9244448809cb4251b341832c8fdfecde5f169ab (diff) | |
Migrate ActivityLogEntryPoint.OnPackageInstallationFailed to IEventConsumer
Diffstat (limited to 'MediaBrowser.Common/Updates')
| -rw-r--r-- | MediaBrowser.Common/Updates/InstallationEventArgs.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Updates/InstallationEventArgs.cs b/MediaBrowser.Common/Updates/InstallationEventArgs.cs index 11eb2ad34a..61178f631c 100644 --- a/MediaBrowser.Common/Updates/InstallationEventArgs.cs +++ b/MediaBrowser.Common/Updates/InstallationEventArgs.cs @@ -1,10 +1,11 @@ #pragma warning disable CS1591 +using System; using MediaBrowser.Model.Updates; namespace MediaBrowser.Common.Updates { - public class InstallationEventArgs + public class InstallationEventArgs : EventArgs { public InstallationInfo InstallationInfo { get; set; } |
