RestApiv2/internal/bd/model/films.go

25 lines
686 B
Go
Raw Normal View History

2022-12-13 16:45:22 +03:00
package model
type Films struct {
2022-12-13 19:24:42 +03:00
Id int
2023-03-15 22:44:31 +03:00
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
2023-03-31 20:08:38 +03:00
Contenttype *string
Ratingagelimits *string
2023-03-15 22:44:31 +03:00
Media *any
2022-12-13 16:45:22 +03:00
}