mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-18 08:05:20 +01:00
25 lines
487 B
Kotlin
25 lines
487 B
Kotlin
package code.name.monkey.retromusic
|
|
|
|
import androidx.annotation.IntDef
|
|
|
|
@IntDef(
|
|
RECENT_ALBUMS,
|
|
TOP_ALBUMS,
|
|
RECENT_ARTISTS,
|
|
TOP_ARTISTS,
|
|
SUGGESTIONS,
|
|
FAVOURITES,
|
|
GENRES,
|
|
PLAYLISTS
|
|
)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class HomeSection
|
|
|
|
const val RECENT_ALBUMS = 3
|
|
const val TOP_ALBUMS = 1
|
|
const val RECENT_ARTISTS = 2
|
|
const val TOP_ARTISTS = 0
|
|
const val SUGGESTIONS = 5
|
|
const val FAVOURITES = 4
|
|
const val GENRES = 6
|
|
const val PLAYLISTS = 7
|