diff --git a/wrapper/src/main/java/wekan/wrapper/entity/BoardView.java b/wrapper/src/main/java/wekan/wrapper/entity/BoardView.java new file mode 100644 index 0000000..7f04129 --- /dev/null +++ b/wrapper/src/main/java/wekan/wrapper/entity/BoardView.java @@ -0,0 +1,13 @@ +package wekan.wrapper.entity; + +import com.google.gson.annotations.SerializedName; + +public enum BoardView { + + @SerializedName("board-view-lists") + BOARD_VIEW_LISTS, + @SerializedName("board-view-swimlanes") + BOARD_VIEW_SWIMLANES, + @SerializedName("board-view-cal") + BOARD_VIEW_CAL +}