package cc.mrbird.febs.dapp.soccer.dto; import lombok.Data; @Data public class LeaguesApiDto { /** * integer = 4 characters YYYY * The season of the league */ private Integer season; /** * string Return the list of active seasons or the las...Show pattern * Enum: "true" "false" * The state of the league */ private String current; }