11 lines
162 B
PHP
11 lines
162 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
class Ville
|
||
|
{
|
||
|
private int $id;
|
||
|
private string $nom;
|
||
|
private string $codePostal;
|
||
|
private int $temperature;
|
||
|
private MeteoVille $meteo;
|
||
|
}
|