m3_lightmeter/lib/data/models/exposure_pair.dart
2023-05-11 14:58:57 +02:00

11 lines
289 B
Dart

import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
class ExposurePair {
final ApertureValue aperture;
final ShutterSpeedValue shutterSpeed;
const ExposurePair(this.aperture, this.shutterSpeed);
@override
String toString() => '$aperture - $shutterSpeed';
}