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

18 lines
500 B

using System;
using NzbDrone.Common.EnvironmentInfo;
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; }
public PlatformType Runtime { get; set; }
}
}