com.github.bjoernpetersen.jmusicbot.playback.SongEntry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of musicbot Show documentation
Show all versions of musicbot Show documentation
Core library of MusicBot, which plays music from various providers.
package com.github.bjoernpetersen.jmusicbot.playback
import com.github.bjoernpetersen.jmusicbot.Song
import com.github.bjoernpetersen.jmusicbot.user.User
sealed class SongEntry {
abstract val song: Song
abstract val user: User?
}
data class QueueEntry(override val song: Song, override val user: User) : SongEntry()
data class SuggestedSongEntry(override val song: Song) : SongEntry() {
override val user: User? = null
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy