mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
25 lines
520 B
Go
25 lines
520 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
ID string
|
|
UserName string
|
|
Name string
|
|
Email 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
|
|
FindByUsername(username string) (*User, error)
|
|
UpdateLastLoginAt(id string) error
|
|
UpdateLastAccessAt(id string) error
|
|
}
|