using System; using System.Text.Json.Serialization; #pragma warning disable SA1300 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 joined_at { 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; } } }