ente/lib/models/album.dart
2020-04-19 00:16:38 +05:30

9 lines
142 B
Dart

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