m3_lightmeter/lib/data/models/exposure_pair.dart
2022-12-16 11:08:12 +03:00

9 lines
218 B
Dart

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