19 lines
425 B
Java
19 lines
425 B
Java
package com.alterdekim.hearthhack.xml;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;
|
|
import lombok.*;
|
|
|
|
import java.util.List;
|
|
|
|
@ToString
|
|
@Getter
|
|
@Setter
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class CardsXML {
|
|
@JsonProperty("Entity")
|
|
@JacksonXmlElementWrapper(useWrapping = false)
|
|
private List<XMLEntity> entities;
|
|
}
|