jellyfin/MediaBrowser.Common/Updates/InstallationEventArgs.cs

22 lines
573 B
C#
Raw Normal View History

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