mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 12:27:41 +00:00
11 lines
205 B
Dart
11 lines
205 B
Dart
import 'package:stackwallet/utilities/amount/amount.dart';
|
|
|
|
class TxRecipient {
|
|
final String address;
|
|
final Amount amount;
|
|
|
|
TxRecipient({
|
|
required this.address,
|
|
required this.amount,
|
|
});
|
|
}
|