| 1 |
<?php |
| 2 |
|
| 3 |
namespace StoreEngine\Classes\Data; |
| 4 |
|
| 5 |
use StoreEngine\Classes\Integration; |
| 6 |
use StoreEngine\Classes\Price; |
| 7 |
|
| 8 |
class IntegrationRepositoryData { |
| 9 |
|
| 10 |
public Price $price; |
| 11 |
public Integration $integration; |
| 12 |
|
| 13 |
public function __construct( Integration $integration, Price $price ) { |
| 14 |
$this->integration = $integration; |
| 15 |
$this->price = $price; |
| 16 |
} |
| 17 |
|
| 18 |
} |
| 19 |
|