Added the option to import the plex admin.

Fixed #1701
This commit is contained in:
tidusjar 2017-11-10 20:27:14 +00:00
parent 1813b45fb3
commit 560072eba4
33 changed files with 279 additions and 91 deletions

View file

@ -2,13 +2,21 @@
namespace Ombi.Api.Plex.Models
{
public class PlexAccount
{
public User user { get; set; }
}
public class User
{
public string id { get; set; }
public string email { get; set; }
public string uuid { get; set; }
public string joined_at { get; set; }
public string username { get; set; }
public string title { get; set; }
public string thumb { get; set; }
public string hasPassword { get; set; }
public string authentication_token { get; set; }
public Subscription subscription { get; set; }
public Roles roles { get; set; }