mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-23 05:02:02 +02:00
Include NzbDrone.Update in mono/osx package Do not ignore certificate warnings for services Check hash before extracting update New: Update support for Linux/OS X - see the wiki for more information
16 lines
412 B
C#
16 lines
412 B
C#
using System;
|
|
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public class UpdatePackage
|
|
{
|
|
public Version Version { get; set; }
|
|
public String Branch { get; set; }
|
|
public DateTime ReleaseDate { get; set; }
|
|
public String FileName { get; set; }
|
|
public String Url { get; set; }
|
|
public UpdateChanges Changes { get; set; }
|
|
public String Hash { get; set; }
|
|
}
|
|
}
|