mirror of
https://github.com/navidrome/navidrome.git
synced 2026-05-02 21:30:15 +00:00
11 lines
143 B
Go
11 lines
143 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
ID string
|
|
Name string
|
|
Password string
|
|
IsAdmin bool
|
|
CreatedAt time.Time
|
|
}
|