mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 19:20:37 +03:00
26 lines
634 B
Go
26 lines
634 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Player struct {
|
|
ID string `json:"id" orm:"column(id)"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
UserName string `json:"userName"`
|
|
Client string `json:"client"`
|
|
IPAddress string `json:"ipAddress"`
|
|
LastSeen time.Time `json:"lastSeen"`
|
|
TranscodingId string `json:"transcodingId"`
|
|
MaxBitRate int `json:"maxBitRate"`
|
|
}
|
|
|
|
type Players []Player
|
|
|
|
type PlayerRepository interface {
|
|
Get(id string) (*Player, error)
|
|
FindByName(client, userName string) (*Player, error)
|
|
Put(p *Player) error
|
|
}
|