mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
18 lines
449 B
C#
18 lines
449 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace MediaBrowser.Providers.Movies
|
|||
|
{
|
|||
|
internal class TmdbImageSettings
|
|||
|
{
|
|||
|
public List<string> backdrop_sizes { get; set; }
|
|||
|
public string 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; }
|
|||
|
}
|
|||
|
}
|