15 lines
231 B
Dart
15 lines
231 B
Dart
class Book {
|
|
Book({
|
|
required this.author,
|
|
required this.ean,
|
|
required this.id,
|
|
required this.priceNew,
|
|
required this.title,
|
|
});
|
|
|
|
String author;
|
|
String title;
|
|
String ean;
|
|
int id;
|
|
String priceNew;
|
|
}
|