Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/it/niedermann/nextcloud/deck/model/Label.java')
-rw-r--r--app/src/main/java/it/niedermann/nextcloud/deck/model/Label.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/app/src/main/java/it/niedermann/nextcloud/deck/model/Label.java b/app/src/main/java/it/niedermann/nextcloud/deck/model/Label.java
new file mode 100644
index 000000000..a880c934d
--- /dev/null
+++ b/app/src/main/java/it/niedermann/nextcloud/deck/model/Label.java
@@ -0,0 +1,46 @@
+package it.niedermann.nextcloud.deck.model;
+
+import it.niedermann.nextcloud.deck.model.RemoteEntity;
+
+public class Label extends RemoteEntity {
+ private String title;
+ private String color;
+ private long boardId;
+ private long cardId;
+
+ public Label() {
+ super();
+ }
+
+ public String getTitle() {
+ return title;
+ }
+
+ public void setTitle(String title) {
+ this.title = title;
+ }
+
+ public String getColor() {
+ return color;
+ }
+
+ public void setColor(String color) {
+ this.color = color;
+ }
+
+ public long getBoardId() {
+ return boardId;
+ }
+
+ public void setBoardId(long boardId) {
+ this.boardId = boardId;
+ }
+
+ public long getCardId() {
+ return cardId;
+ }
+
+ public void setCardId(long cardId) {
+ this.cardId = cardId;
+ }
+}