* @category Class * @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License * @link www.splendidbear.org * @since 2026. 04. 20. */ final readonly class ProfileViewDto { public function __construct( public ProfileStatsDto $stats, public array $recent, public array $gamesData, public ProfileChartDataDto $chartData, ) { } public function toTemplateContext(): array { return get_object_vars($this); } }