9 lines
239 B
Dart
9 lines
239 B
Dart
import 'package:immich_mobile/domain/models/render_list.model.dart';
|
|
|
|
abstract interface class IRenderListRepository {
|
|
/// Streams the [RenderList] for the main timeline
|
|
Stream<RenderList> watchAll();
|
|
|
|
Future<RenderList> getAll();
|
|
}
|