mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 23:40:41 +00:00
22 lines
435 B
Dart
22 lines
435 B
Dart
|
abstract class MeteringCommunicationEvent {
|
||
|
const MeteringCommunicationEvent();
|
||
|
}
|
||
|
|
||
|
abstract class SourceEvent extends MeteringCommunicationEvent {
|
||
|
const SourceEvent();
|
||
|
}
|
||
|
|
||
|
abstract class ScreenEvent extends MeteringCommunicationEvent {
|
||
|
const ScreenEvent();
|
||
|
}
|
||
|
|
||
|
class MeasureEvent extends ScreenEvent {
|
||
|
const MeasureEvent();
|
||
|
}
|
||
|
|
||
|
class MeasuredEvent extends SourceEvent {
|
||
|
final double ev100;
|
||
|
|
||
|
const MeasuredEvent(this.ev100);
|
||
|
}
|