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.
jellyfin/MediaBrowser.Providers/Movies/TmdbSettings.cs

18 lines
456 B

using System.Collections.Generic;
namespace MediaBrowser.Providers.Movies
{
internal class TmdbImageSettings
{
public List<string> backdrop_sizes { get; set; }
public string secure_base_url { get; set; }
public List<string> poster_sizes { get; set; }
public List<string> profile_sizes { get; set; }
}
internal class TmdbSettingsResult
{
public TmdbImageSettings images { get; set; }
}
}