// internal/series/model.go package series type Serie struct { Title string `yaml:"title"` IDs struct { Slug string `json:"slug"` IMDB string `json:"imdb"` TMDB int `json:"tmdb"` Trakt int `json:"trakt"` TVDB int `json:"tvdb"` } `json:"ids"` Subtitle string `yaml:"subtitle"` Link string `yaml:"link"` Year int `yaml:"year"` Rate float64 `yaml:"rate"` Progress string `yaml:"progress"` Image string `yaml:"image"` Poster string `yaml:"poster-image"` Background string `yaml:"background-image"` Date string `yaml:"date"` Tags []string } type Series []Serie