mirror of
https://github.com/ente-io/ente.git
synced 2025-05-28 21:47:57 +00:00
8 lines
168 B
Dart
8 lines
168 B
Dart
import "package:photos/events/event.dart";
|
|
|
|
class MachineLearningControlEvent extends Event {
|
|
final bool shouldRun;
|
|
|
|
MachineLearningControlEvent(this.shouldRun);
|
|
}
|