hugo-medialog/internal/libros/model.go

18 lines
448 B
Go
Raw Normal View History

2024-10-08 19:08:01 +00:00
package libros
type Libro struct {
Title string `yaml:"title"`
Author string `yaml:"author"`
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 Libros []Libro