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

11 lines
263 B
Go

package models
// SetCardCountResume card count resume of the set.
type SetCardCountResume struct {
// Total of number of cards.
Total int `json:"total"`
// Official number of cards officially (on the bottom of each cards).
Official int `json:"official"`
}