Files
elder-scrolls-legends/src/main/java/ch/gtache/elderscrollslegends/client/JSONCardCollection.java

8 lines
266 B
Java

package ch.gtache.elderscrollslegends.client;
import java.util.List;
public record JSONCardCollection(String Name, JSONRawKey DisplayName, List<JSONCard> Cards, int ContentPackIndex,
boolean DisplayAsPromo, String DisplayIcon) {
}