mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
13 lines
271 B
Dart
13 lines
271 B
Dart
class YatRecord {
|
|
YatRecord({
|
|
required this.category,
|
|
required this.address,
|
|
});
|
|
|
|
YatRecord.fromJson(Map<String, dynamic> json)
|
|
: address = json['address'] as String,
|
|
category = json['category'] as String;
|
|
|
|
String category;
|
|
String address;
|
|
}
|