14 lines
260 B
PHP
14 lines
260 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
class Pointage
|
||
|
{
|
||
|
private int $id;
|
||
|
private int $nbBaigneur;
|
||
|
private int $nbPratiquant;
|
||
|
private int $bateauPeche;
|
||
|
private int $bateauLoisir;
|
||
|
private int $bateauVoile;
|
||
|
private Produits $produit;
|
||
|
private int $niveauDechet;
|
||
|
}
|