navidrome/model/user.go
2020-01-19 20:40:18 -05:00

14 lines
229 B
Go

package model
import "time"
type User struct {
ID string
Name string
Password string
IsAdmin bool
LastLoginAt time.Time
LastAccessAt time.Time
CreatedAt time.Time
UpdatedAt time.Time
}