ente/lib/models/album.dart

9 lines
121 B
Dart
Raw Normal View History

2020-05-01 18:20:12 +00:00
import 'photo.dart';
2020-04-18 18:46:38 +00:00
class Album {
final String name;
final List<Photo> photos;
Album(this.name, this.photos);
}