12 lines
281 B
Go
12 lines
281 B
Go
package data
|
|
|
|
type Wireless struct {
|
|
TxPower24 uint32 `json:"txpower24,omitempty"`
|
|
Channel24 uint32 `json:"channel24,omitempty"`
|
|
TxPower5 uint32 `json:"txpower5,omitempty"`
|
|
Channel5 uint32 `json:"channel5,omitempty"`
|
|
}
|
|
type SwitchPort struct {
|
|
Speed uint32 `json:"speed"`
|
|
}
|