ente/mobile/lib/models/api/user/private_key_attributes.dart
2025-02-17 16:27:50 +05:30

8 lines
174 B
Dart

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