ente/lib/models/encrypted_data_attributes.dart

9 lines
254 B
Dart

import 'package:photos/models/encryption_attribute.dart';
class EncryptedData {
final EncryptionAttribute key;
final EncryptionAttribute nonce;
final EncryptionAttribute encryptedData;
EncryptedData(this.key, this.nonce, this.encryptedData);
}