ente/lib/models/private_key_attributes.dart

8 lines
174 B
Dart
Raw Normal View History

2022-11-01 06:13:06 +00:00
class PrivateKeyAttributes {
final String key;
final String recoveryKey;
final String secretKey;
PrivateKeyAttributes(this.key, this.recoveryKey, this.secretKey);
}