jellyfin/MediaBrowser.Common/Updates/InstallationEventArgs.cs

24 lines
592 B
C#
Raw Normal View History

#nullable disable
using System;
using MediaBrowser.Model.Updates;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Common.Updates
{
2020-12-06 18:48:54 -05:00
/// <summary>
/// Defines the <see cref="InstallationEventArgs" />.
/// </summary>
public class InstallationEventArgs : EventArgs
2018-12-27 18:27:57 -05:00
{
2020-12-06 18:48:54 -05:00
/// <summary>
/// Gets or sets the <see cref="InstallationInfo"/>.
/// </summary>
2018-12-27 18:27:57 -05:00
public InstallationInfo InstallationInfo { get; set; }
2020-12-06 18:48:54 -05:00
/// <summary>
/// Gets or sets the <see cref="VersionInfo"/>.
/// </summary>
public VersionInfo VersionInfo { get; set; }
2018-12-27 18:27:57 -05:00
}
}