You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
646 B
22 lines
646 B
<?php
|
|
|
|
namespace App\Services\Crawl;
|
|
|
|
class CrawlItemDto
|
|
{
|
|
public function __construct(
|
|
public string $externalId,
|
|
public string $title,
|
|
public ?string $canonicalUrl = null,
|
|
public ?string $authors = null,
|
|
public ?string $summary = null,
|
|
public ?string $publishedAt = null,
|
|
public ?string $schoolName = null,
|
|
public ?string $section = null,
|
|
public ?string $contentHtml = null,
|
|
public array $extra = [],
|
|
/** @var list<array{name:string,email?:?string,affiliation?:?string,university_name?:?string}> */
|
|
public array $authorsParsed = [],
|
|
) {}
|
|
}
|