2020-02-25 16:58:39 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
#pragma warning disable SA1600
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Updates
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class PackageVersionInfo.
|
|
|
|
/// </summary>
|
|
|
|
public class VersionInfo
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
|
|
|
public string name { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the guid.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The guid.</value>
|
|
|
|
public string guid { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the version.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The version.</value>
|
2020-04-11 10:52:40 +00:00
|
|
|
public Version version { get; set; }
|
2020-02-25 16:58:39 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the description.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The description.</value>
|
|
|
|
public string description { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the minimum required version for the server.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The minimum required version.</value>
|
|
|
|
public string minimumServerVersion { 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; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the target filename for the downloaded binary.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The target filename.</value>
|
|
|
|
public string filename { get; set; }
|
|
|
|
}
|
|
|
|
}
|