mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
6 lines
95 B
Dart
6 lines
95 B
Dart
|
class Limits {
|
||
|
final double min;
|
||
|
final double max;
|
||
|
|
||
|
const Limits({this.min, this.max});
|
||
|
}
|