ente/lib/models/private_key_attributes.dart

8 lines
174 B
Dart
Raw Normal View History

class PrivateKeyAttributes {
final String key;
2021-03-29 14:59:37 +00:00
final String recoveryKey;
final String secretKey;
2021-03-29 14:59:37 +00:00
PrivateKeyAttributes(this.key, this.recoveryKey, this.secretKey);
}