. */ declare(strict_types=1); namespace App\Services\InfoProviderSystem\DTOs; class FileDTO { public function __construct( /** The URL where to get this file */ public readonly string $url, /** Optionally the name of this file */ public readonly ?string $name = null, ) {} }