Files
tessera/core/data/events/mbpsnapshot.go
2025-11-27 20:34:34 +08:00

14 lines
167 B
Go

package events
type MBPSnapshot struct {
Bids []PriceLevel
Asks []PriceLevel
Depth int
Seq uint64
}
type PriceLevel struct {
Price float64
Size float64
}