mirror of
https://github.com/antebudimir/tempus.git
synced 2026-04-16 00:37:25 +00:00
18 lines
401 B
Kotlin
18 lines
401 B
Kotlin
|
|
package com.cappielloantonio.play.model
|
||
|
|
|
||
|
|
import android.os.Parcelable
|
||
|
|
import androidx.annotation.Keep
|
||
|
|
import androidx.room.ColumnInfo
|
||
|
|
import androidx.room.Entity
|
||
|
|
import androidx.room.PrimaryKey
|
||
|
|
import kotlinx.android.parcel.Parcelize
|
||
|
|
|
||
|
|
@Keep
|
||
|
|
@Parcelize
|
||
|
|
@Entity(tableName = "recent_search")
|
||
|
|
data class RecentSearch(
|
||
|
|
@PrimaryKey
|
||
|
|
@ColumnInfo(name = "search")
|
||
|
|
var search: String
|
||
|
|
) : Parcelable
|