mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-08-25 21:39:40 +00:00
6 lines
161 B
Dart
6 lines
161 B
Dart
import 'package:syncrow_app/features/booking_system/domain/booking_model.dart';
|
|
|
|
abstract interface class BookingService {
|
|
Future<List<BookingModel>> get();
|
|
}
|