Files
cheeper-ddd-cqrs-example/src/Cheeper/Application/Query/Timeline/TimelineResponse.php
2021-11-15 15:53:36 +01:00

14 lines
189 B
PHP

<?php
declare(strict_types=1);
namespace Cheeper\Application\Query\Timeline;
final class TimelineResponse
{
public function __construct(
public array $cheeps
) {
}
}