cake_wallet/lib/entities/parsed_address.dart

16 lines
340 B
Dart
Raw Normal View History

2022-01-18 07:46:13 +00:00
enum ParseFrom { unstoppableDomains, openAlias, yatRecord, notParsed }
class ParsedAddress {
ParsedAddress({
this.addresses,
this.name = '',
2022-01-18 07:46:13 +00:00
this.description = '',
this.parseFrom = ParseFrom.notParsed,
});
final List<String> addresses;
final String name;
2022-01-18 07:46:13 +00:00
final String description;
final ParseFrom parseFrom;
2022-01-18 07:46:13 +00:00
}