relatica/lib/models/gallery_data.dart

8 wiersze
170 B
Dart

class GalleryData {
final int count;
final String name;
final DateTime created;
GalleryData({required this.count, required this.name, required this.created});
}