cake_wallet/lib/exchange/limits.dart

6 lines
97 B
Dart
Raw Normal View History

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