CakeWallet/lib/exchange/limits.dart

6 lines
97 B
Dart
Raw Normal View History

2020-01-04 21:31:52 +02:00
class Limits {
2020-01-08 14:26:34 +02:00
const Limits({this.min, this.max});
2020-01-04 21:31:52 +02:00
final double min;
final double max;
}