ente/lib/models/encrypted_file_attributes.dart
2020-09-26 00:37:32 +05:30

8 lines
199 B
Dart

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