crypto_alert_bot/internal/entities/pair.go

7 lines
165 B
Go
Raw Normal View History

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