2020-04-05 16:10:56 +00:00
|
|
|
#nullable disable
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Updates
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Class InstallationInfo.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public class InstallationInfo
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-11 10:52:40 +00:00
|
|
|
/// Gets or sets the guid.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2020-04-11 10:52:40 +00:00
|
|
|
/// <value>The guid.</value>
|
2020-05-24 06:04:10 +00:00
|
|
|
public Guid Guid { get; set; }
|
2018-12-27 23:27:57 +00: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>
|
2020-05-24 06:04:10 +00:00
|
|
|
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; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|