11 lines
263 B
Go
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"`
|
|
}
|