jellyfin/MediaBrowser.Model/Updates/InstallationInfo.cs

57 lines
1.5 KiB
C#
Raw Normal View History

#nullable disable
2021-02-12 14:33:10 +01:00
using System;
2020-12-18 21:37:35 +01:00
using System.Text.Json.Serialization;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Updates
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Class InstallationInfo.
2018-12-28 00:27:57 +01:00
/// </summary>
public class InstallationInfo
{
/// <summary>
2020-12-18 21:37:35 +01:00
/// Gets or sets the Id.
2018-12-28 00:27:57 +01:00
/// </summary>
2020-12-18 21:37:35 +01:00
/// <value>The Id.</value>
[JsonPropertyName("Guid")]
public Guid Id { get; set; }
2018-12-28 00:27:57 +01:00
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the version.
/// </summary>
/// <value>The version.</value>
public Version Version { get; set; }
/// <summary>
/// Gets or sets the changelog for this version.
/// </summary>
/// <value>The changelog.</value>
public string Changelog { get; set; }
/// <summary>
/// Gets or sets the source URL.
/// </summary>
/// <value>The source URL.</value>
public string SourceUrl { get; set; }
/// <summary>
/// Gets or sets a checksum for the binary.
/// </summary>
/// <value>The checksum.</value>
public string Checksum { get; set; }
2021-02-12 14:33:10 +01:00
/// <summary>
/// Gets or sets package information for the installation.
/// </summary>
/// <value>The package information.</value>
public PackageInfo PackageInfo { get; set; }
2018-12-28 00:27:57 +01:00
}
}