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