ente/lib/models/device_folder.dart

14 lines
204 B
Dart
Raw Normal View History

2020-06-19 23:03:26 +00:00
import 'package:photos/models/file.dart';
2020-04-18 18:46:38 +00:00
2020-05-17 14:35:31 +00:00
class DeviceFolder {
2020-04-18 18:46:38 +00:00
final String name;
final String path;
2020-06-19 23:03:26 +00:00
final File thumbnail;
2020-04-18 18:46:38 +00:00
DeviceFolder(
this.name,
this.path,
this.thumbnail,
);
2020-04-18 18:46:38 +00:00
}