31 lines
653 B
C#
31 lines
653 B
C#
namespace Shared.Models.Online.Kodik
|
|
{
|
|
public struct Result
|
|
{
|
|
public string id { get; set; }
|
|
|
|
public string title { get; set; }
|
|
|
|
public string title_orig { get; set; }
|
|
|
|
public string type { get; set; }
|
|
|
|
public int? year { get; set; }
|
|
|
|
public string link { get; set; }
|
|
|
|
public string imdb_id { get; set; }
|
|
|
|
public string kinopoisk_id { get; set; }
|
|
|
|
public Translation translation { get; set; }
|
|
|
|
public int last_season { get; set; }
|
|
|
|
public Dictionary<string, Season> seasons { get; set; }
|
|
|
|
|
|
public MaterialData material_data { get; set; }
|
|
}
|
|
}
|