mirror of
https://github.com/ente-io/ente.git
synced 2025-05-30 22:33:15 +00:00
8 lines
174 B
Dart
8 lines
174 B
Dart
class PrivateKeyAttributes {
|
|
final String key;
|
|
final String recoveryKey;
|
|
final String secretKey;
|
|
|
|
PrivateKeyAttributes(this.key, this.recoveryKey, this.secretKey);
|
|
}
|