m3_lightmeter/lib/models/exposure_pair.dart

9 lines
186 B
Dart
Raw Normal View History

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