8 lines
144 B
Go
8 lines
144 B
Go
|
package device
|
||
|
|
||
|
type Key struct {
|
||
|
Id string `json:"id,omitempty"`
|
||
|
Type string `json:"type,omitempty"`
|
||
|
Key string `json:"key,omitempty"`
|
||
|
}
|