ente/lib/models/private_key_attributes.dart

10 lines
188 B
Dart

// @dart=2.9
class PrivateKeyAttributes {
final String key;
final String recoveryKey;
final String secretKey;
PrivateKeyAttributes(this.key, this.recoveryKey, this.secretKey);
}