mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
10 lines
145 B
Dart
10 lines
145 B
Dart
|
class CreateTradeResult {
|
||
|
bool result;
|
||
|
String? errorMessage;
|
||
|
|
||
|
CreateTradeResult({
|
||
|
required this.result,
|
||
|
this.errorMessage,
|
||
|
});
|
||
|
}
|