pp-planer/app/Services/DTO/ParsedCcliSong.php
2026-05-10 18:42:21 +02:00

18 lines
388 B
PHP

<?php
namespace App\Services\DTO;
final readonly class ParsedCcliSong
{
public function __construct(
public string $title,
public ?string $author,
public ?string $ccliId,
public ?string $year,
public ?string $copyrightText,
public ?string $sourceUrl,
/** @var ParsedCcliSection[] */
public array $sections,
) {}
}