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