jellyfin/MediaBrowser.Common/Updates/InstallationEventArgs.cs

18 lines
407 B
C#
Raw Normal View History

2013-07-06 23:23:32 +02:00
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; }
}
}