7 lines
165 B
Go
7 lines
165 B
Go
|
|
package entities
|
||
|
|
|
||
|
|
type Pair struct {
|
||
|
|
BaseCurrency string // base currency of the pair. e.g. BTC.
|
||
|
|
QuoteCurrency string // quote currency of the pair. e.g. USDT.
|
||
|
|
}
|