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-27 18:27:57 -05:00
namespace MediaBrowser.Common.Updates
{
public class InstallationEventArgs : EventArgs
2018-12-27 18:27:57 -05:00
{
public InstallationInfo InstallationInfo { get; set; }
public VersionInfo VersionInfo { get; set; }
2018-12-27 18:27:57 -05:00
}
}