mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
13 lines
321 B
Dart
13 lines
321 B
Dart
|
import 'package:cake_wallet/anonpay/anonpay_info_base.dart';
|
||
|
|
||
|
class AnonpayDonationLinkInfo implements AnonpayInfoBase{
|
||
|
final String clearnetUrl;
|
||
|
final String onionUrl;
|
||
|
final String address;
|
||
|
|
||
|
AnonpayDonationLinkInfo({
|
||
|
required this.clearnetUrl,
|
||
|
required this.onionUrl,
|
||
|
required this.address,
|
||
|
});
|
||
|
}
|