2022-12-13 16:45:22 +03:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Films struct {
|
2022-12-13 19:24:42 +03:00
|
|
|
Id int
|
|
|
|
Ru_title string
|
|
|
|
Orig_title string
|
2022-12-13 16:45:22 +03:00
|
|
|
imdb_id string
|
|
|
|
kinopoisk_id string
|
|
|
|
posterUrl string
|
|
|
|
posterUrlPreview string
|
|
|
|
countries string
|
|
|
|
genres map[string]interface{}
|
|
|
|
year int
|
|
|
|
description string
|
|
|
|
ratingKinopoisk int
|
|
|
|
ratingImdb int
|
|
|
|
iframe_src string
|
|
|
|
ratingImdbVoteCount int
|
|
|
|
ratingKinopoiskVoteCount int
|
|
|
|
media map[string]interface{}
|
|
|
|
}
|