#nullable disable
using System;
namespace MediaBrowser.Model.Updates
{
///
/// Class PackageVersionInfo.
///
public class VersionInfo
{
///
/// Gets or sets the version.
///
/// The version.
public string version { get; set; }
///
/// Gets or sets the changelog for this version.
///
/// The changelog.
public string changelog { get; set; }
///
/// Gets or sets the ABI that this version was built against.
///
/// The target ABI version.
public string targetAbi { get; set; }
///
/// Gets or sets the source URL.
///
/// The source URL.
public string sourceUrl { get; set; }
///
/// Gets or sets a checksum for the binary.
///
/// The checksum.
public string checksum { get; set; }
///
/// Gets or sets a timestamp of when the binary was built.
///
/// The timestamp.
public string timestamp { get; set; }
}
}