1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| 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;
| }
|
|