mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 09:33:33 +00:00
14 lines
No EOL
321 B
Kotlin
14 lines
No EOL
321 B
Kotlin
package com.cappielloantonio.play.model
|
|
|
|
import android.os.Parcelable
|
|
import androidx.annotation.Keep
|
|
import kotlinx.android.parcel.Parcelize
|
|
|
|
@Keep
|
|
@Parcelize
|
|
class Genre : Parcelable {
|
|
companion object {
|
|
const val ORDER_BY_NAME = "ORDER_BY_NAME"
|
|
const val ORDER_BY_RANDOM = "ORDER_BY_RANDOM"
|
|
}
|
|
} |