forked from External/mage
15 lines
386 B
Java
15 lines
386 B
Java
package mage.verify.mtgjson;
|
|
|
|
import java.util.List;
|
|
|
|
public final class MtgJsonSet {
|
|
// v5 support
|
|
// https://mtgjson.com/data-models/card-atomic/
|
|
// contains only used fields, if you need more for tests then just add it here
|
|
|
|
public List<MtgJsonCard> cards;
|
|
public String code;
|
|
public String name;
|
|
public String releaseDate;
|
|
public int totalSetSize;
|
|
}
|