blob: 46f10c84fd7a323088481d27d6b9eccb50982b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma warning disable CS1591
using System;
namespace MediaBrowser.Common.Updates
{
public class InstallationFailedEventArgs : InstallationEventArgs
{
public Exception Exception { get; set; }
}
}
|