using System;
using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.Simkl.API.Objects
{
///
/// User.
///
public class User
{
///
/// Gets or sets name.
///
public string Name { get; set; }
///
/// Gets or sets joined at.
///
[JsonPropertyName("joined_at")]
public DateTime JoinedAt { get; set; }
///
/// Gets or sets gender.
///
public string Gender { get; set; }
///
/// Gets or sets avatar.
///
public string Avatar { get; set; }
///
/// Gets or sets bio.
///
public string Bio { get; set; }
///
/// Gets or sets loc.
///
public string Loc { get; set; }
///
/// Gets or sets age.
///
public string Age { get; set; }
}
}