2020-09-28 20:37:02 +00:00
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"nutfactory.org/Matrix/entities/device"
|
|
|
|
)
|
|
|
|
|
|
|
|
type User struct {
|
2020-10-01 15:45:57 +00:00
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
Devices map[string]*device.Device `json:"devices,omitempty"`
|
2020-09-28 20:37:02 +00:00
|
|
|
}
|