NDI-2020/php/Classe/MeteoSpot.php
2020-12-04 03:19:36 +01:00

18 lines
312 B
PHP

<?php
class MeteoSpot
{
private int $id;
private int $houle;
private int $maree;
private int $vent;
public function __construct(int $id,int $houle,int $maree,int $vent)
{
$this->id=$id;
$this->houle=$houle;
$this->mare=$maree;
$this->vent=$vent;
}
}