qbtrade/pkg/types/fundingrate.go
2024-06-27 22:42:38 +08:00

14 lines
189 B
Go

package types
import (
"time"
"git.qtrade.icu/lychiyu/qbtrade/pkg/fixedpoint"
)
type FundingRate struct {
FundingRate fixedpoint.Value
FundingTime time.Time
Time time.Time
}