hugo-medialog/internal/games/model.go

22 lines
588 B
Go
Raw Normal View History

2024-10-09 09:12:44 +00:00
package games
2024-10-08 19:08:01 +00:00
2024-10-09 09:12:44 +00:00
type Game struct {
2024-10-08 19:08:01 +00:00
Title string `yaml:"title"`
2024-10-10 18:03:49 +00:00
Platform string `yaml:"platform"`
ID int `yaml:"igdb_id"`
2024-10-08 19:08:01 +00:00
Link string `yaml:"link"`
2024-10-10 18:03:49 +00:00
Slug string `yaml:"slug"`
2024-10-08 19:08:01 +00:00
Subtitle string `yaml:"subtitle"`
2024-10-10 18:03:49 +00:00
Year string `yaml:"year"`
2024-10-08 19:08:01 +00:00
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"`
New bool `yaml:"new"`
2024-10-08 19:08:01 +00:00
Tags []string
}
2024-10-09 09:12:44 +00:00
type Games []Game