mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 04:34:34 +00:00
18 lines
339 B
Dart
18 lines
339 B
Dart
import 'package:isar/isar.dart';
|
|
|
|
part 'encrypted_string_value.g.dart';
|
|
|
|
@Collection()
|
|
class EncryptedStringValue {
|
|
Id id = Isar.autoIncrement;
|
|
|
|
@Index(unique: true, replace: true)
|
|
late String key;
|
|
|
|
late String value;
|
|
|
|
@override
|
|
String toString() {
|
|
return "EncryptedStringValue {\n key=$key\n value=$value\n}";
|
|
}
|
|
}
|