release 0.1 #30

Manually merged
noemi3 merged 150 commits from release/0.1 into master 2020-01-18 14:59:02 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 182b070b83 - Show all commits

View File

@ -6,7 +6,7 @@ import java.util.List;
public class Card {
//Constructor for update card
//Constructor for add card
public Card(String authorId, String title, String swimlaneId, String description) {
this.authorId= authorId;
this.title = title;
@ -81,11 +81,11 @@ public class Card {
this.coverId = coverId;
}
public String getColor() {
public Color getColor() {
return color;
}
public void setColor(String color) {
public void setColor(Color color) {
this.color = color;
}
@ -302,7 +302,7 @@ public class Card {
private String swimlaneId;
private String boardId;
private String coverId;
private String color;
private Color color;
private Date createdAt;
private Date modifiedAt;
private List<String> customFields;