NDI-2020/php/Spot.php

11 lines
158 B
PHP
Raw Normal View History

2020-12-04 01:22:13 +01:00
<?php
2020-12-04 01:31:37 +01:00
class Spot
2020-12-04 01:22:13 +01:00
{
private int $id;
private string $nom;
private Ville $ville;
2020-12-04 01:31:37 +01:00
private MeteoSpot $meteo;
2020-12-04 01:22:13 +01:00
private Pollution $pollution;
}