mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
8 lines
128 B
Dart
8 lines
128 B
Dart
|
abstract class MeteringEvent {
|
||
|
const MeteringEvent();
|
||
|
}
|
||
|
|
||
|
class MeasureEvent extends MeteringEvent {
|
||
|
const MeasureEvent();
|
||
|
}
|