MonthlyAveragePriceEvolutionDto.php 340 octets
Newer Older
<?php

namespace App\Dto;

class MonthlyAveragePriceEvolutionDto
{
    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;
    }
}