ente/lib/models/album.dart
2020-05-01 23:50:12 +05:30

9 lines
121 B
Dart

import 'photo.dart';
class Album {
final String name;
final List<Photo> photos;
Album(this.name, this.photos);
}