hugo-medialog/internal/movies/model.go

18 lines
440 B
Go
Raw Normal View History

2024-10-09 09:12:44 +00:00
// internal/movies/model.go
package movies
2024-10-08 19:08:01 +00:00
2024-10-09 09:12:44 +00:00
type Movie struct {
2024-10-08 19:08:01 +00:00
Title string `yaml:"title"`
Subtitle string `yaml:"subtitle"`
Link string `yaml:"link"`
Year int `yaml:"year"`
Rate float64 `yaml:"rate"`
Image string `yaml:"image"`
Poster string `yaml:"poster-image"`
Background string `yaml:"background-image"`
Date string `yaml:"date"`
Tags []string
}
2024-10-09 09:12:44 +00:00
type Movies []Movie