22 lines
580 B
Go
22 lines
580 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 string
|
|
Year int
|
|
Description string
|
|
RatingKinopoisk int
|
|
RatingImdb int
|
|
Iframe_src string
|
|
RatingImdbVoteCount int
|
|
RatingKinopoiskVoteCount int
|
|
Media string
|
|
}
|