22 lines
612 B
Go
22 lines
612 B
Go
|
package model
|
||
|
|
||
|
type Films struct {
|
||
|
id int
|
||
|
ru_title string
|
||
|
orig_title string
|
||
|
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{}
|
||
|
}
|