13 lines
204 B
Dart
13 lines
204 B
Dart
import 'package:photos/models/file.dart';
|
|
|
|
class DeviceFolder {
|
|
final String name;
|
|
final String path;
|
|
final File thumbnail;
|
|
|
|
DeviceFolder(
|
|
this.name,
|
|
this.path,
|
|
this.thumbnail,
|
|
);
|
|
}
|