9 lines
178 B
Go
9 lines
178 B
Go
package mpvipc
|
|
|
|
type PlaylistEntry struct {
|
|
Filename string `json:"filename"`
|
|
Current bool `json:"current"`
|
|
Playing bool `json:"playing"`
|
|
ID int `json:"id"`
|
|
}
|