35 lines
824 B
C#
35 lines
824 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TMDbLib.Objects.Account
|
|
{
|
|
public class AccountDetails
|
|
{
|
|
[JsonProperty("avatar")]
|
|
public Avatar Avatar { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty("include_adult")]
|
|
public bool IncludeAdult { get; set; }
|
|
|
|
/// <summary>
|
|
/// A country code, e.g. US
|
|
/// </summary>
|
|
[JsonProperty("iso_3166_1")]
|
|
public string Iso_3166_1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// A language code, e.g. en
|
|
/// </summary>
|
|
[JsonProperty("iso_639_1")]
|
|
public string Iso_639_1 { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("username")]
|
|
public string Username { get; set; }
|
|
}
|
|
}
|