class CurrencyPair { final String base; final String quote; const CurrencyPair({ required this.base, required this.quote, }); }