// Angular Core
import { Component, Input, OnInit } from '@angular/core';

// Third Party
import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap';

@Component({
  standalone: false,
  selector: 'app-product-less-quantity-popup',
  templateUrl: './product-less-quantity-popup.component.html',
  styleUrls: ['./product-less-quantity-popup.component.scss']
})
export class ProductLessQuantityPopupComponent implements OnInit {
  @Input() lessQtyRealAmount!: number
  @Input() lessQtyPopup!: NgbModalRef
  @Input() lessQtyClickOk!: () => void

  constructor() { }

  ngOnInit(): void {
  }

}
