namespace Jellyfin.Plugin.Simkl.API.Objects { /// /// Account. /// public class Account { /// /// Gets or sets account id. /// public int Id { get; set; } /// /// Gets or sets timezone. /// public string Timezone { get; set; } } }