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

20 lines
305 B
Go

package models
// SetResume resume of the set.
type SetResume struct {
// ID Globally unique set ID.
ID string
// Name of the set.
Name string
// Logo incomplete URL.
Logo string
// Symbol incomplete URL.
Symbol string
// CardCount number of card in the set.
CardCount SetCardCountResume
}