16 lines
344 B
PHP
16 lines
344 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
class Produits
|
||
|
{
|
||
|
private int $id;
|
||
|
private bool $estCremeSolaire;
|
||
|
private bool $estCremeParfum;
|
||
|
private bool $estCremeHydratante;
|
||
|
private bool $estMaquillage;
|
||
|
private bool $estEssence;
|
||
|
private bool $estCigarette;
|
||
|
private bool $estEngrais;
|
||
|
private bool $estPeinture;
|
||
|
private string $autreProduit;
|
||
|
}
|