mirror of
https://github.com/ente-io/ente.git
synced 2025-04-30 19:42:33 +00:00
9 lines
170 B
Dart
9 lines
170 B
Dart
import 'package:photos/models/file/file.dart';
|
|
|
|
class FileLoadResult {
|
|
final List<EnteFile> files;
|
|
final bool hasMore;
|
|
|
|
FileLoadResult(this.files, this.hasMore);
|
|
}
|