aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Updates/InstallationEventArgs.cs
blob: f4f75995593aacc4aa1e960bc162af95d5b24c9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#nullable disable

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; }
    }
}