Files
jellyfin-jellyfin-1/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs
Andrew Rabert a86b71899e Add GPL modules
2018-12-27 18:27:57 -05:00

9 lines
189 B
C#

using System;
namespace MediaBrowser.Common.Updates
{
public class InstallationFailedEventArgs : InstallationEventArgs
{
public Exception Exception { get; set; }
}
}