jellyfin/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs

9 lines
189 B
C#
Raw Normal View History

2014-05-08 23:23:24 +02:00
using System;
namespace MediaBrowser.Common.Updates
{
public class InstallationFailedEventArgs : InstallationEventArgs
{
public Exception Exception { get; set; }
}
}