mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
32 lines
No EOL
542 B
Dart
32 lines
No EOL
542 B
Dart
import 'package:hive/hive.dart';
|
|
|
|
part 'unspent_coins_info.g.dart';
|
|
|
|
@HiveType(typeId: UnspentCoinsInfo.typeId)
|
|
class UnspentCoinsInfo extends HiveObject {
|
|
UnspentCoinsInfo({
|
|
this.walletId,
|
|
this.hash,
|
|
this.isFrozen,
|
|
this.isSending,
|
|
this.note});
|
|
|
|
static const typeId = 9;
|
|
static const boxName = 'Unspent';
|
|
static const boxKey = 'unspentBoxKey';
|
|
|
|
@HiveField(0)
|
|
String walletId;
|
|
|
|
@HiveField(1)
|
|
String hash;
|
|
|
|
@HiveField(2)
|
|
bool isFrozen;
|
|
|
|
@HiveField(3)
|
|
bool isSending;
|
|
|
|
@HiveField(4)
|
|
String note;
|
|
} |