28 lines
798 B
PHP
28 lines
798 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\SetParticipationFees;
|
|
|
|
use App\Models\Event;
|
|
use App\RelationModels\EventParticipationFee;
|
|
|
|
class SetParticipationFeesRequest {
|
|
public Event $event;
|
|
public array $participationFeeFirst;
|
|
public ?array $participationFeeSecond;
|
|
public ?array $participationFeeThird;
|
|
public ?array $participationFeeFourth;
|
|
|
|
public bool $siblingReduction;
|
|
|
|
|
|
public function __construct(Event $event, array $participationFeeFirst, bool $siblingReduction) {
|
|
$this->event = $event;
|
|
$this->participationFeeFirst = $participationFeeFirst;
|
|
$this->participationFeeSecond = null;
|
|
$this->participationFeeThird = null;
|
|
$this->participationFeeFourth = null;
|
|
$this->siblingReduction = $siblingReduction;
|
|
}
|
|
|
|
}
|