jellyfin/MediaBrowser.Common/Updates/InstallationEventArgs.cs

15 lines
303 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Updates;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Common.Updates
{
public class InstallationEventArgs : EventArgs
2018-12-28 00:27:57 +01:00
{
public InstallationInfo InstallationInfo { get; set; }
public VersionInfo VersionInfo { get; set; }
2018-12-28 00:27:57 +01:00
}
}