mirror of
https://github.com/hmalik144/easy_cc_flutter.git
synced 2026-03-18 07:35:54 +00:00
6 lines
121 B
Dart
6 lines
121 B
Dart
class CurrencyPair {
|
|
String? currencyOne;
|
|
String? currencyTwo;
|
|
|
|
CurrencyPair(this.currencyOne, this.currencyTwo);
|
|
} |