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
243 B
Dart
12 lines
243 B
Dart
![]() |
import 'package:immich_mobile/models/folder/root_folder.model.dart';
|
||
|
|
||
|
class RecursiveFolder extends RootFolder {
|
||
|
final String name;
|
||
|
|
||
|
RecursiveFolder({
|
||
|
required this.name,
|
||
|
required super.path,
|
||
|
required super.subfolders,
|
||
|
});
|
||
|
}
|