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.
23 lines
571 B
23 lines
571 B
6 years ago
|
using System.Collections.Generic;
|
||
11 years ago
|
|
||
5 years ago
|
namespace MediaBrowser.Providers.Tmdb.Movies
|
||
11 years ago
|
{
|
||
|
internal class TmdbImageSettings
|
||
|
{
|
||
|
public List<string> backdrop_sizes { get; set; }
|
||
9 years ago
|
public string secure_base_url { get; set; }
|
||
11 years ago
|
public List<string> poster_sizes { get; set; }
|
||
|
public List<string> profile_sizes { get; set; }
|
||
6 years ago
|
|
||
|
public string GetImageUrl(string image)
|
||
|
{
|
||
|
return secure_base_url + image;
|
||
|
}
|
||
11 years ago
|
}
|
||
|
|
||
|
internal class TmdbSettingsResult
|
||
|
{
|
||
|
public TmdbImageSettings images { get; set; }
|
||
|
}
|
||
|
}
|