jellyfin-server/MediaBrowser.Common/Updates/InstallationEventArgs.cs

22 lines
573 B
C#
Raw Normal View History

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