Newer
Older
GestionHoteleria / src / app / modals / cart-item.ts
James Cuadrado on 23 May 2021 135 bytes init
import { Product } from './product.model';

// cart items
export interface CartItem {
  product: Product;
  quantity: number;
}