aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs
blob: c8967f9dbf7f2fd9199a10944355790e31e2bdaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma warning disable CS1591
#pragma warning disable SA1600

using System;

namespace MediaBrowser.Common.Updates
{
    public class InstallationFailedEventArgs : InstallationEventArgs
    {
        public Exception Exception { get; set; }
    }
}