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.
Ombi/src/Ombi.Api.Plex/Models/User.cs

27 lines
831 B

using System.Collections.Generic;
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; }
public List<string> entitlements { get; set; }
public object confirmed_at { get; set; }
public int forum_id { get; set; }
}
}