aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Updates/InstallationEventArgs.cs
blob: 2c3a805de19bf7c53ba0af9af9640b1f624d6664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using MediaBrowser.Model.Updates;
using System;

namespace MediaBrowser.Common.Updates
{
    public class InstallationEventArgs
    {
        public InstallationInfo InstallationInfo { get; set; }

        public PackageVersionInfo PackageVersionInfo { get; set; }
    }

    public class InstallationFailedEventArgs : InstallationEventArgs
    {
        public Exception Exception { get; set; }
    }
}