24 lines
650 B
Go
24 lines
650 B
Go
|
package model
|
||
|
|
||
|
type Siries 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
|
||
|
Translations *any
|
||
|
Episodes *any
|
||
|
}
|