2024-04-28 14:13:47 +00:00
|
|
|
package entities
|
2024-04-24 10:54:49 +00:00
|
|
|
|
|
|
|
type CardPrinting struct {
|
2024-05-27 16:45:22 +00:00
|
|
|
Id string
|
|
|
|
Name string
|
|
|
|
SetCode string
|
|
|
|
HasFoil bool
|
|
|
|
HasNonFoil bool
|
|
|
|
IsReserved bool
|
|
|
|
IsRacist bool
|
|
|
|
IsPromo bool
|
|
|
|
CollectorNumber string
|
|
|
|
Language string
|
2024-04-24 10:54:49 +00:00
|
|
|
}
|