hugo-medialog/internal/series/model.go

18 lines
450 B
Go

package series
type Serie struct {
Title string `yaml:"title"`
Link string `yaml:"link"`
Subtitle string `yaml:"subtitle"`
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