You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Update/UpdatePackage.cs

16 lines
408 B

using System;
namespace NzbDrone.Core.Update
{
public class UpdatePackage
{
public Version Version { 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; }
public string Branch { get; set; }
}
}