jellyfin/MediaBrowser.Common/Updates/InstallationEventArgs.cs
2013-07-06 17:23:32 -04:00

18 lines
407 B
C#

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; }
}
}