14 lines
189 B
Go
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
|
||
|
}
|