Matrix/entities/user/user.go

13 lines
333 B
Go
Raw Normal View History

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
}