Matrix/entities/device/device.go

8 lines
175 B
Go
Raw Normal View History

2020-09-28 20:37:02 +00:00
package device
type Device struct {
2020-10-01 15:45:57 +00:00
Id string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
Keys map[string]*Key `json:"keys,omitempty"`
2020-09-28 20:37:02 +00:00
}