require full bid data on update

This commit is contained in:
Yisroel Baum 2025-12-03 21:31:45 +02:00
parent 9e2e6d9449
commit 14e77d2885
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
4 changed files with 16 additions and 12 deletions

View file

@ -4,8 +4,14 @@ namespace FreightQuote\Bid\UseCases;
class UpdateBidRequest
{
/**
* @param string[] $fileAttachments
*/
public function __construct(
public int $bidId,
public array $data,
public int $cost,
public bool $isClosed,
public string $notes,
public array $fileAttachments,
) {}
}