mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
11 lines
283 B
Dart
11 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;
|
|
}
|