m3_lightmeter/lib/models/exposure_pair.dart
2022-10-29 21:02:45 +03:00

8 lines
186 B
Dart

import 'photography_value.dart';
class ExposurePair {
final ApertureValue aperture;
final ShutterSpeedValue shutterSpeed;
const ExposurePair(this.aperture, this.shutterSpeed);
}