mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
12 lines
283 B
Dart
12 lines
283 B
Dart
|
import 'package:nc_photos/account.dart';
|
||
|
import 'package:nc_photos/entity/sharee.dart';
|
||
|
|
||
|
/// List all sharees of an account
|
||
|
class ListSharee {
|
||
|
ListSharee(this.shareeRepo);
|
||
|
|
||
|
Future<List<Sharee>> call(Account account) => shareeRepo.list(account);
|
||
|
|
||
|
final ShareeRepo shareeRepo;
|
||
|
}
|