You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-06-17 03:47:45 +02: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,
|
||
|
});
|
||
|
}
|