mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
20 lines
357 B
Go
20 lines
357 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
|
|
}
|
|
|
|
type UserRepository interface {
|
|
CountAll(...QueryOptions) (int64, error)
|
|
Get(id string) (*User, error)
|
|
Put(*User) error
|
|
}
|