mirror of https://github.com/readrops/Readrops.git
Migrate FilterType and ListSortTYpe to kotlin
This commit is contained in:
parent
96be5af06e
commit
4dfa474d14
|
@ -1,6 +1,6 @@
|
|||
package com.readrops.db.filters;
|
||||
|
||||
public enum FilterType {
|
||||
enum class FilterType {
|
||||
FEED_FILTER,
|
||||
FOLDER_FILER,
|
||||
READ_IT_LATER_FILTER,
|
|
@ -1,6 +0,0 @@
|
|||
package com.readrops.db.filters;
|
||||
|
||||
public enum ListSortType {
|
||||
NEWEST_TO_OLDEST,
|
||||
OLDEST_TO_NEWEST
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
package com.readrops.db.filters
|
||||
|
||||
enum class ListSortType {
|
||||
NEWEST_TO_OLDEST,
|
||||
OLDEST_TO_NEWEST
|
||||
}
|
Loading…
Reference in New Issue