ente/auth/lib/models/private_key_attributes.dart
2024-03-01 12:19:20 +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);
}