mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
15 lines
340 B
Dart
15 lines
340 B
Dart
enum ParseFrom { unstoppableDomains, openAlias, yatRecord, notParsed }
|
|
|
|
class ParsedAddress {
|
|
ParsedAddress({
|
|
this.addresses,
|
|
this.name = '',
|
|
this.description = '',
|
|
this.parseFrom = ParseFrom.notParsed,
|
|
});
|
|
|
|
final List<String> addresses;
|
|
final String name;
|
|
final String description;
|
|
final ParseFrom parseFrom;
|
|
}
|