Migrate FilterType and ListSortTYpe to kotlin

This commit is contained in:
Shinokuni 2021-09-01 22:21:50 +02:00
parent 96be5af06e
commit 4dfa474d14
3 changed files with 8 additions and 8 deletions

View File

@ -1,9 +1,9 @@
package com.readrops.db.filters;
public enum FilterType {
enum class FilterType {
FEED_FILTER,
FOLDER_FILER,
READ_IT_LATER_FILTER,
STARS_FILTER,
NO_FILTER
}
}

View File

@ -1,6 +0,0 @@
package com.readrops.db.filters;
public enum ListSortType {
NEWEST_TO_OLDEST,
OLDEST_TO_NEWEST
}

View File

@ -0,0 +1,6 @@
package com.readrops.db.filters
enum class ListSortType {
NEWEST_TO_OLDEST,
OLDEST_TO_NEWEST
}