mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2026-05-19 09:15:47 +08:00
19 lines
339 B
Go
19 lines
339 B
Go
package model
|
|
|
|
type PlaylistMode int
|
|
|
|
const (
|
|
PlaylistModeNormal PlaylistMode = iota
|
|
PlaylistModeRandom
|
|
PlaylistModeRepeat
|
|
)
|
|
|
|
type PlaylistID string
|
|
|
|
const (
|
|
PlaylistIDPlayer PlaylistID = "player"
|
|
PlaylistIDSystem PlaylistID = "system"
|
|
PlaylistIDHistory PlaylistID = "history"
|
|
PlaylistIDPlaylists PlaylistID = "playlists"
|
|
)
|