lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

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; }
}
}