trademodel/ticker.go
2024-06-25 21:52:58 +08:00

12 lines
196 B
Go

package trademodel
type Ticker struct {
CurrencyPair string
Last float64
High float64
Low float64
Bid float64
Ask float64
Volume float64
}