16 lines
255 B
Dart
16 lines
255 B
Dart
typedef Book = ({
|
|
String id,
|
|
String title,
|
|
String author,
|
|
String genre,
|
|
String annotation,
|
|
String? coverUrl,
|
|
int? pages,
|
|
String? language,
|
|
int? publishedYear,
|
|
double? rating,
|
|
String status,
|
|
double? progress,
|
|
bool isFavorite,
|
|
});
|