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

namespace MediaBrowser.Common.Updates
{
    /// <summary>
    /// Defines the <see cref="InstallationEventArgs" />.
    /// </summary>
    public class InstallationEventArgs : EventArgs
    {
        /// <summary>
        /// Gets or sets the <see cref="InstallationInfo"/>.
        /// </summary>
        public InstallationInfo InstallationInfo { get; set; }

        /// <summary>
        /// Gets or sets the <see cref="VersionInfo"/>.
        /// </summary>
        public VersionInfo VersionInfo { get; set; }
    }
}