10 lines
187 B
C#
10 lines
187 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Common.Updates
|
|
{
|
|
public class InstallationFailedEventArgs : InstallationEventArgs
|
|
{
|
|
public Exception Exception { get; set; }
|
|
}
|
|
}
|