KKSU
2024-05-11 71756c5945f5174f53302b127e4ea5e437f8d53b
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;
}