/ src / dto / AddContributionDto.php
AddContributionDto.php
 1  <?php
 2  
 3  namespace ButA2SaeS3\dto;
 4  
 5  class AddContributionDto
 6  {
 7      public function __construct(
 8          public int $adherents_id,
 9          public int $amount_cents,
10          public string $method,
11          public ?string $reference = null,
12          public ?string $notes = null
13      ) {}
14  }