jellyfin/MediaBrowser.Model/Updates/InstallationInfo.cs

41 lines
1.0 KiB
C#
Raw Normal View History

using System;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Updates
{
/// <summary>
2020-02-03 19:49:27 -05:00
/// Class InstallationInfo.
2018-12-27 18:27:57 -05:00
/// </summary>
public class InstallationInfo
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
public Guid Id { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the assembly guid.
/// </summary>
/// <value>The guid of the assembly.</value>
public string AssemblyGuid { get; set; }
/// <summary>
/// Gets or sets the version.
/// </summary>
/// <value>The version.</value>
public string Version { get; set; }
/// <summary>
/// Gets or sets the update class.
/// </summary>
/// <value>The update class.</value>
public PackageVersionClass UpdateClass { get; set; }
}
}