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.
17 lines
379 B
17 lines
379 B
<?php
|
|
|
|
namespace App\Domains\Academic\DTOs\Calendar;
|
|
|
|
use Carbon\CarbonImmutable;
|
|
|
|
readonly class InitializeAcademicTermDTO
|
|
{
|
|
public function __construct(
|
|
public string $name,
|
|
public string $code,
|
|
public string $yearStudy,
|
|
public string $semester,
|
|
public CarbonImmutable $startDate,
|
|
public CarbonImmutable $endDate,
|
|
) {}
|
|
}
|
|
|