mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
12 lines
280 B
Dart
12 lines
280 B
Dart
class PaynymResponse<T> {
|
|
final T? value;
|
|
final int statusCode;
|
|
final String message;
|
|
|
|
PaynymResponse(this.value, this.statusCode, this.message);
|
|
|
|
@override
|
|
String toString() {
|
|
return "PaynymResponse: value=$value, statusCode=$statusCode, message=$message";
|
|
}
|
|
}
|