Initial commit: Penyerahan final Source code Tugas Akhir
This commit is contained in:
16
lib/models/order_model.dart
Normal file
16
lib/models/order_model.dart
Normal file
@ -0,0 +1,16 @@
|
||||
class OrderModel {
|
||||
String idCourse;
|
||||
String title;
|
||||
String price;
|
||||
String discountPrice;
|
||||
String imageUrl;
|
||||
String instructor;
|
||||
|
||||
OrderModel(
|
||||
{required this.idCourse,
|
||||
required this.title,
|
||||
required this.price,
|
||||
required this.imageUrl,
|
||||
required this.discountPrice,
|
||||
required this.instructor});
|
||||
}
|
Reference in New Issue
Block a user