mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
11 lines
297 B
Java
11 lines
297 B
Java
package mage.verify;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
|
import static mage.verify.MtgJson.MTGJSON_IGNORE_NEW_PROPERTIES;
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = MTGJSON_IGNORE_NEW_PROPERTIES)
|
|
public class JsonMeta {
|
|
public String date;
|
|
public String version;
|
|
}
|