25 lines
686 B
Go
25 lines
686 B
Go
package model
|
|
|
|
type Films struct {
|
|
Id int
|
|
Ru_title *string
|
|
Orig_title *string
|
|
Imdb_id *string
|
|
Kinopoisk_id *int
|
|
PosterUrl *string
|
|
PosterUrlPreview *string
|
|
Countries *any
|
|
Genres *any
|
|
Year *int
|
|
Description *string
|
|
RatingKinopoisk *int
|
|
RatingImdb *int
|
|
Iframe_src *string
|
|
RatingImdbVoteCount *int
|
|
RatingKinopoiskVoteCount *int
|
|
Created *string
|
|
Contenttype *string
|
|
Ratingagelimits *string
|
|
Media *any
|
|
}
|