mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
11 lines
142 B
Go
11 lines
142 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
ID string
|
|
Name string
|
|
Password string
|
|
IsAdmin bool
|
|
CreatedAt time.Time
|
|
}
|