This commit is contained in:
tidusjar 2016-06-02 14:12:44 +01:00
commit 41b439d3bb
3 changed files with 23 additions and 8 deletions

View file

@ -27,11 +27,15 @@
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace PlexRequests.Api.Models.Movie
{
public class ProfileList
{
public bool core { get; set; }
public bool hide { get; set; }
public string _rev { get; set; }
public List<bool> finish { get; set; }
public List<string> qualities { get; set; }
@ -42,7 +46,8 @@ namespace PlexRequests.Api.Models.Movie
public List<int> stop_after { get; set; }
public List<int> wait_for { get; set; }
public int order { get; set; }
public List<object> __invalid_name__3d { get; set; }
[JsonProperty(PropertyName = "3d")]
public List<object> threeD { get; set; }
}
public class CouchPotatoProfiles