immich/mobile/lib/models/folder/root_folder.model.dart
shenlong 5b0575b956
refactor: DCM - const border radius, constructor & switch expressions ()
* enable border radius, switch exp, const constructor

* regenerate provider

* more formatting

---------

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
2025-06-25 13:06:24 +05:30

11 lines
241 B
Dart

import 'package:immich_mobile/models/folder/recursive_folder.model.dart';
class RootFolder {
final List<RecursiveFolder> subfolders;
final String path;
const RootFolder({
required this.subfolders,
required this.path,
});
}