yanic/data/breminale.go

15 lines
277 B
Go
Raw Normal View History

2016-06-18 22:01:12 +00:00
package data
type Frequence struct {
TxPower uint32 `json:"txpower"`
Channel uint32 `json:"channel"`
}
type Settings struct {
Freq24 *Frequence `json:"freq24,omitempty"`
Freq5 *Frequence `json:"freq5,omitempty"`
}
type SwitchPort struct {
Speed uint32 `json:"speed"`
}