m3_lightmeter/lib/data/models/exposure_pair.dart

10 lines
256 B
Dart
Raw Normal View History

import 'photography_values/aperture_value.dart';
import 'photography_values/shutter_speed_value.dart';
2022-10-29 18:02:45 +00:00
class ExposurePair {
final ApertureValue aperture;
final ShutterSpeedValue shutterSpeed;
const ExposurePair(this.aperture, this.shutterSpeed);
}