12 lines
164 B
PHP
12 lines
164 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\ComponentsBundle\Interfaces;
|
|
|
|
class ProductDetail
|
|
{
|
|
public int $id_product;
|
|
public ?int $id_variation;
|
|
}
|