Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
elearning_repository.dart
Go to the documentation of this file.
1import '/features/elearning/domain/entities/video_entity.dart';
2import 'package:dartz/dartz.dart';
3
4import '../../../../core/errors/failures.dart';
5
6abstract class ElearningRepository {
7 Future<Either<Failure, List<VideoEntity>>> loadVideos();
8}
Future< Either< Failure, List< VideoEntity > > > loadVideos()