8 lines
266 B
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) {
|
|
}
|