12 lines
257 B
Kotlin
12 lines
257 B
Kotlin
package exh.savedsearches.models
|
|
|
|
data class FeedSavedSearch(
|
|
// Tag identifier, unique
|
|
var id: Long?,
|
|
|
|
// Source for the saved search
|
|
var source: Long,
|
|
|
|
// If -1 then get latest, if set get the saved search
|
|
var savedSearch: Long?
|
|
)
|