aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Updates/InstallationEventArgs.cs
blob: 11eb2ad34a73db7a13b2ee0bbe19d9508486e33d (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 VersionInfo VersionInfo { get; set; }
    }
}