m3_lightmeter/lib/data/models/exposure_pair.dart
Vadim 14bac950cf Fixed _models_ and _screens_ folders structure
proper folders for models

unified _screen_ folder filenames
2022-12-18 14:39:02 +03:00

9 lines
256 B
Dart

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