th7/data/core/data.go

18 lines
303 B
Go
Raw Permalink Normal View History

2022-11-12 14:20:29 +00:00
package core
type Channel struct {
2023-11-21 14:57:53 +00:00
Id int `json:"id"`
Value float64 `json:"value"`
2022-11-12 14:20:29 +00:00
}
type Ratio struct {
Vref float64 `json:"vref"`
Vadj float64 `json:"vadj"`
Pivdd float64 `json:"pivdd"`
}
type Data struct {
Channels [7]Channel `json:"channels"`
Table Ratio `json:"table"`
}