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-31 01:43:30 +03:00
|
|
|
Imdb_id string
|
|
|
|
Kinopoisk_id string
|
|
|
|
PosterUrl string
|
|
|
|
PosterUrlPreview string
|
2023-01-07 14:19:53 +03:00
|
|
|
Countries interface{}
|
|
|
|
Genres interface{}
|
2022-12-31 01:43:30 +03:00
|
|
|
Year int
|
|
|
|
Description string
|
|
|
|
RatingKinopoisk int
|
|
|
|
RatingImdb int
|
|
|
|
Iframe_src string
|
|
|
|
RatingImdbVoteCount int
|
|
|
|
RatingKinopoiskVoteCount int
|
2023-01-07 14:19:53 +03:00
|
|
|
Media interface{}
|
2022-12-13 16:45:22 +03:00
|
|
|
}
|