После этого вижу, что скачалась папка site, внутри которой папка .git. На этом все.
[{
id: 1,
text: "2+2=",
answers: [{
text: "два с половиной",
nextId: 2
},{
text: "четыре",
nextId:3,
}]
},{
id:2,
text: "всё плохо"
},{
id: 3,
text: "всё хорошо"
}]
@Getter
@Setter
@AllArgsConstructor
public class Data {
private String title;
private String description;
}
private List<Data> sections = new ArrayList<>();
sections.add(new Data("title1", "description1"));
sections.add(new Data("title2", "description2"));