cake_wallet/lib/entities/template.dart

22 lines
371 B
Dart
Raw Normal View History

import 'package:hive/hive.dart';
part 'template.g.dart';
2020-06-01 18:56:21 +00:00
@HiveType(typeId: 6)
class Template extends HiveObject {
Template({this.name, this.address, this.cryptoCurrency, this.amount});
static const boxName = 'Template';
@HiveField(0)
String name;
@HiveField(1)
String address;
@HiveField(2)
String cryptoCurrency;
@HiveField(3)
String amount;
}