mirror of
https://github.com/immich-app/immich.git
synced 2025-07-03 21:40:00 +02:00
* enable border radius, switch exp, const constructor * regenerate provider * more formatting --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
11 lines
241 B
Dart
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,
|
|
});
|
|
}
|