Files
tcgdex-golang/models/serie_resume.go
2025-08-12 18:57:23 +02:00

14 lines
226 B
Go

package models
// SerieResume resume of the serie.
type SerieResume struct {
// ID of the serie.
ID string `json:"id"`
// Name of the serie.
Name string `json:"name"`
// Logo of the serie.
Logo string `json:"logo"`
}