SubwayTooter-Android-App/app/src/main/java/jp/juggler/subwaytooter/api/entity/TootSearchGap.kt

18 lines
358 B
Kotlin

package jp.juggler.subwaytooter.api.entity
class TootSearchGap(val type: SearchType ) :TimelineItem(){
enum class SearchType{
Hashtag,
Account,
Status
}
override fun getOrderId() : EntityId {
return EntityId.DEFAULT
}
// constructor(max_id : Long, since_id : Long) : this(EntityIdLong(max_id), EntityIdLong(since_id))
}