mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-03 16:19:51 +00:00
10 lines
198 B
Dart
10 lines
198 B
Dart
import 'package:shopping_assistant_mobile_client/models/enums/search_event_type.dart';
|
|
|
|
class ServerSentEvent {
|
|
|
|
SearchEventType event;
|
|
String data;
|
|
|
|
ServerSentEvent(this.event, this.data);
|
|
}
|