Files
be_happy_public/lib/presentation/event/send_photo_event.dart
2026-05-12 12:02:40 +03:00

14 lines
264 B
Dart

abstract class SendPhotoEvent {}
class PhotoSelected extends SendPhotoEvent {
final List<String> imagePaths;
PhotoSelected(this.imagePaths);
}
class PhotoUploadSubmitted extends SendPhotoEvent {
final int orderId;
PhotoUploadSubmitted(this.orderId);
}