mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 22:19:41 +00:00
23 lines
404 B
Dart
23 lines
404 B
Dart
|
import 'package:hive/hive.dart';
|
||
|
|
||
|
part 'nano_account.g.dart';
|
||
|
|
||
|
@HiveType(typeId: NanoAccount.typeId)
|
||
|
class NanoAccount extends HiveObject {
|
||
|
NanoAccount({required this.label, required this.id, this.balance, this.isSelected = false});
|
||
|
|
||
|
static const typeId = 13;
|
||
|
|
||
|
@HiveField(0)
|
||
|
String label;
|
||
|
|
||
|
@HiveField(1)
|
||
|
final int id;
|
||
|
|
||
|
@HiveField(2)
|
||
|
bool isSelected;
|
||
|
|
||
|
@HiveField(3)
|
||
|
String? balance;
|
||
|
}
|