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

using MediaBrowser.Model.Updates;

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

        public PackageVersionInfo PackageVersionInfo { get; set; }
    }
}