mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-25 19:55:52 +00:00
14 lines
285 B
Dart
14 lines
285 B
Dart
import 'package:isar/isar.dart';
|
|
import 'package:stackwallet/models/isar/models/blockchain_data/transaction.dart';
|
|
|
|
part 'transaction_note.g.dart';
|
|
|
|
@Collection()
|
|
class TransactionNote {
|
|
Id id = Isar.autoIncrement;
|
|
|
|
@Index(unique: true)
|
|
late String txid;
|
|
|
|
late String value;
|
|
}
|