Files
basango/apps/api-legacy/src/Aggregator/Application/UseCase/Query/GetLatestPublicationDate.php
T

20 lines
350 B
PHP

<?php
declare(strict_types=1);
namespace Basango\Aggregator\Application\UseCase\Query;
/**
* Class GetLatestPublicationDate.
*
* @author bernard-ng <bernard@devscast.tech>
*/
final readonly class GetLatestPublicationDate
{
public function __construct(
public string $source,
public ?string $category = null
) {
}
}