15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
|
|
namespace App\Twig\Components;
|
|
|
|
use App\Download\Framework\Entity\Download;
|
|
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
|
|
|
|
#[AsTwigComponent]
|
|
final class DownloadListRow
|
|
{
|
|
public Download $download;
|
|
|
|
public bool $isWidget = true;
|
|
}
|