8 lines
199 B
Dart
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);
|
|
}
|