mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 16:54:06 +02:00
20 lines
382 B
Dart
20 lines
382 B
Dart
import 'package:mobile/models/coordinate.dart';
|
|
|
|
class Product {
|
|
final int id;
|
|
final String name;
|
|
final String description;
|
|
final int priceInDkkCent;
|
|
final Coordinate? location;
|
|
final String? barcode;
|
|
|
|
Product({
|
|
required this.id,
|
|
required this.name,
|
|
required this.priceInDkkCent,
|
|
required this.description,
|
|
this.location,
|
|
this.barcode,
|
|
});
|
|
}
|