public class Root {
private Long userId;
private Long id;
private String title;
private Boolean completed;
public Root(Long userId, Long id, String title, Boolean completed) {
this.userId = userId;
this.id = id;
this.title = title;
this.completed = completed;
}
public Long getUserId() {
return this.userId;
}
public Long getId() {
return this.id;
}
public String getTitle() {
return this.title;
}
public Boolean getCompleted() {
return this.completed;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public void setId(Long id) {