mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
8 lines
156 B
Dart
8 lines
156 B
Dart
|
class PaynymResponse<T> {
|
||
|
final T? value;
|
||
|
final int statusCode;
|
||
|
final String message;
|
||
|
|
||
|
PaynymResponse(this.value, this.statusCode, this.message);
|
||
|
}
|