2022-12-04 19:12:52 +00:00
|
|
|
import 'aperture_value.dart';
|
|
|
|
import '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);
|
|
|
|
}
|