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

17 lines
275 B
PHP

<?php
class MeteoVille
{
private int $id;
private int $temperature;
private int $vent;
public function __construct(int $id,int $temperature,int $vent)
{
$this->id=$id;
$this->temperature=$temperature;
$this->vent=$vent;
}
}