mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-07 08:00:15 +02:00
21 lines
380 B
PHP
21 lines
380 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tvdt\Dto;
|
|
|
|
use Symfony\Component\Uid\Uuid;
|
|
|
|
final readonly class Result
|
|
{
|
|
public function __construct(
|
|
public Uuid $id,
|
|
public string $name,
|
|
public int $correct,
|
|
public float $corrections,
|
|
public int $penaltySeconds,
|
|
public \DateInterval $time,
|
|
public float $score,
|
|
) {}
|
|
}
|