mirror of
https://github.com/Radarr/Radarr
synced 2025-03-03 18:36:41 +00:00
Fixed UpdateResource
This commit is contained in:
parent
11c49c9260
commit
c6bbc52631
1 changed files with 7 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using NzbDrone.Api.REST;
|
||||
using NzbDrone.Core.Update;
|
||||
using NzbDrone.Api.Mapping;
|
||||
|
@ -32,7 +33,13 @@ private List<UpdateResource> GetAvailableUpdate()
|
|||
|
||||
public class UpdateResource : RestResource
|
||||
{
|
||||
public String Id { get; set; }
|
||||
|
||||
[JsonConverter(typeof(Newtonsoft.Json.Converters.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; }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue