Files
basango/projects/backend/src/Aggregator/Application/UseCase/Command/DeleteArticles.php
T
2025-10-05 14:42:25 +02:00

20 lines
328 B
PHP

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