ente/lib/models/private_key_attributes.dart

8 lines
174 B
Dart

class PrivateKeyAttributes {
final String key;
final String recoveryKey;
final String secretKey;
PrivateKeyAttributes(this.key, this.recoveryKey, this.secretKey);
}