fix: flow on scan + owners managment
This commit is contained in:
parent
70146055df
commit
86094b5d76
10 changed files with 283 additions and 130 deletions
15
lib/domain/models/book.dart
Normal file
15
lib/domain/models/book.dart
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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;
|
||||
}
|
||||
Reference in a new issue