From 67cc004c958efded837663ce1a7612e82669c733 Mon Sep 17 00:00:00 2001 From: Umberto Furno Date: Tue, 12 Nov 2019 15:51:24 +0100 Subject: [PATCH] Add ListSortBy --- .../java/wekan/wrapper/entity/ListSortBy.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 wrapper/src/main/java/wekan/wrapper/entity/ListSortBy.java diff --git a/wrapper/src/main/java/wekan/wrapper/entity/ListSortBy.java b/wrapper/src/main/java/wekan/wrapper/entity/ListSortBy.java new file mode 100644 index 0000000..5f152e9 --- /dev/null +++ b/wrapper/src/main/java/wekan/wrapper/entity/ListSortBy.java @@ -0,0 +1,19 @@ +package wekan.wrapper.entity; + +import com.google.gson.annotations.SerializedName; + +public enum ListSortBy { + + @SerializedName("-modifiedat") + _MODIFIEDAT, + @SerializedName("modifiedat") + MODIFIEDAT, + @SerializedName("-title") + _TITLE, + @SerializedName("title") + TITLE, + @SerializedName("-sort") + _SORT, + @SerializedName("sort") + SORT +}