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

15 lines
322 B
C#
Raw Normal View History

#pragma warning disable CS1591
2019-12-10 23:13:57 +00:00
#pragma warning disable SA1600
using MediaBrowser.Model.Updates;
2018-12-27 23:27:57 +00:00
namespace MediaBrowser.Common.Updates
{
public class InstallationEventArgs
{
public InstallationInfo InstallationInfo { get; set; }
public PackageVersionInfo PackageVersionInfo { get; set; }
}
}