2021-05-05 10:57:01 +00:00
|
|
|
#nullable disable
|
2019-10-09 15:10:16 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Updates
|
|
|
|
{
|
|
|
|
public class InstallationFailedEventArgs : InstallationEventArgs
|
|
|
|
{
|
|
|
|
public Exception Exception { get; set; }
|
|
|
|
}
|
2019-01-13 19:30:41 +00:00
|
|
|
}
|