crypto_alert_bot/internal/entities/pair.go

6 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.
}