2020-01-04 19:31:52 +00:00
|
|
|
import 'package:hive/hive.dart';
|
|
|
|
|
|
|
|
part 'transaction_description.g.dart';
|
|
|
|
|
2021-01-15 17:41:30 +00:00
|
|
|
@HiveType(typeId: TransactionDescription.typeId)
|
2020-01-04 19:31:52 +00:00
|
|
|
class TransactionDescription extends HiveObject {
|
2020-12-22 18:42:30 +00:00
|
|
|
TransactionDescription({this.id, this.recipientAddress, this.transactionNote});
|
2020-01-08 12:26:34 +00:00
|
|
|
|
2021-01-15 17:41:30 +00:00
|
|
|
static const typeId = 2;
|
2020-01-04 19:31:52 +00:00
|
|
|
static const boxName = 'TransactionDescriptions';
|
2020-09-21 11:50:26 +00:00
|
|
|
static const boxKey = 'transactionDescriptionsBoxKey';
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
@HiveField(0)
|
|
|
|
String id;
|
|
|
|
|
|
|
|
@HiveField(1)
|
|
|
|
String recipientAddress;
|
2020-12-22 18:42:30 +00:00
|
|
|
|
|
|
|
@HiveField(2)
|
|
|
|
String transactionNote;
|
|
|
|
|
|
|
|
String get note => transactionNote ?? '';
|
2020-01-08 12:26:34 +00:00
|
|
|
}
|