Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-24 08:58:44 +01:00
parent 92216c1ae2
commit 6e051b9cd4
280 changed files with 19204 additions and 2 deletions

View file

@ -0,0 +1,24 @@
package com.gbros.tabslite.data
import androidx.room.ColumnInfo
import androidx.room.Entity
import androidx.room.PrimaryKey
@Entity(
tableName = "search_suggestions"
)
/**
* Store suggested searches by query in the local database
*/
data class SearchSuggestions (
/**
* The search query that these suggestions are for
*/
@PrimaryKey val query: String,
/**
* The list of search suggestions for this query
*/
@ColumnInfo(name = "suggested_searches") val suggestedSearches: List<String>
)