jellyfin/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs

10 lines
190 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
using System;
namespace MediaBrowser.Common.Updates
{
public class InstallationFailedEventArgs : InstallationEventArgs
{
public Exception Exception { get; set; }
}
}