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

15 lines
186 B
Go

package events
type MBOSnapshot struct {
Orders []OrderEntry
Seq uint64
}
type OrderEntry struct {
OrderID string
Side Side
Price float64
Size float64
IsMaker bool
}