Files

17 lines
335 B
Dart

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});
}