9 lines
225 B
Go
9 lines
225 B
Go
package entities
|
|
|
|
type InstrumentID string
|
|
|
|
type Instrument struct {
|
|
ID InstrumentID
|
|
BaseCurrency string // base currency of the pair. e.g. BTC.
|
|
QuoteCurrency string // quote currency of the pair. e.g. USDT.
|
|
}
|