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

View File

@@ -0,0 +1,10 @@
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"`
}