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.
20 lines
467 B
20 lines
467 B
using System;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public class UpdatePackage
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
[JsonConverter(typeof(VersionConverter))]
|
|
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; }
|
|
}
|
|
}
|