mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 19:20:37 +03:00
15 lines
231 B
Go
15 lines
231 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
|
|
}
|