Newer
Older
<?php
namespace App\Dto;
firdaous elhalafi
a validé
class MonthlyAveragePriceEvolution
{
public int $month;
public int $year;
public float $averagePrice;
public function __construct(int $month, int $year, float $averagePrice)
{
$this->month = $month;
$this->year = $year;
$this->averagePrice = $averagePrice;
}
}