mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
12 lines
235 B
Dart
12 lines
235 B
Dart
|
|
import 'package:immich_mobile/models/folder/recursive_folder.model.dart';
|
||
|
|
|
||
|
|
class RootFolder {
|
||
|
|
final List<RecursiveFolder> subfolders;
|
||
|
|
final String path;
|
||
|
|
|
||
|
|
RootFolder({
|
||
|
|
required this.subfolders,
|
||
|
|
required this.path,
|
||
|
|
});
|
||
|
|
}
|