feat: init client

This commit is contained in:
2025-08-12 18:38:22 +02:00
commit a145da0d2d
24 changed files with 713 additions and 0 deletions

22
models/set_card_count.go Normal file
View File

@@ -0,0 +1,22 @@
package models
// SetCardCount informations about the number of cards in the set.
type SetCardCount struct {
// Total of the number of cards.
Total int `json:"total"`
// Official is the number of cards officially (on the bottom of each cards).
Official int `json:"official"`
// Normal number of cards having a normal version.
Normal int `json:"normal"`
// Reverse number of cards having an reverse version.
Reverse int `json:"reverse"`
// Holo number of cards having an holo version.
Holo int `json:"holo"`
// FirstEd number of possible cards.
FirstEd int `json:"firstEd"`
}