2019-04-06 13:35:36 +02:00
|
|
|
package exh.metadata.sql.models
|
|
|
|
|
|
|
|
|
|
data class SearchTitle(
|
|
|
|
|
// Title identifier, unique
|
2020-04-04 22:30:05 +02:00
|
|
|
val id: Long?,
|
2019-04-06 13:35:36 +02:00
|
|
|
|
|
|
|
|
// Metadata this title is attached to
|
2020-04-04 22:30:05 +02:00
|
|
|
val mangaId: Long,
|
2019-04-06 13:35:36 +02:00
|
|
|
|
|
|
|
|
// Title
|
2020-04-04 22:30:05 +02:00
|
|
|
val title: String,
|
2019-04-06 13:35:36 +02:00
|
|
|
|
|
|
|
|
// Title type, useful for distinguishing between main/alt titles
|
2020-04-04 22:30:05 +02:00
|
|
|
val type: Int
|
2019-04-06 13:35:36 +02:00
|
|
|
)
|