mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
14bac950cf
proper folders for models unified _screen_ folder filenames
9 lines
256 B
Dart
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);
|
|
}
|