mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
18 lines
332 B
JavaScript
18 lines
332 B
JavaScript
import Product from "./Product";
|
|
|
|
class BookingProduct extends Product {
|
|
|
|
constructor(id, quantity, booking) {
|
|
super(id, quantity, null);
|
|
this.booking = booking;
|
|
}
|
|
|
|
data() {
|
|
return {
|
|
...super.data(),
|
|
booking: this.booking
|
|
}
|
|
}
|
|
}
|
|
|
|
export default BookingProduct;
|