MonthlyAveragePriceEvolution.php 337 octets
Newer Older
{
    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;
    }
}