You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
477 B
18 lines
477 B
<?php
|
|
|
|
namespace App\Domains\Admission\DTOs\IntakeScheduling;
|
|
|
|
use Carbon\CarbonImmutable;
|
|
use Illuminate\Contracts\Support\Arrayable;
|
|
|
|
readonly class DefineAdmissionScheduleDTO
|
|
{
|
|
public function __construct(
|
|
public CarbonImmutable $startData,
|
|
public CarbonImmutable $endData,
|
|
public CarbonImmutable $reRegisterStartData,
|
|
public CarbonImmutable $reRegisterEndData,
|
|
public int $termId,
|
|
public int $admissionTrackId
|
|
) {}
|
|
}
|
|
|