add set scheduling api
This commit is contained in:
parent
bdb266746d
commit
98ae9bf088
20 changed files with 935 additions and 1 deletions
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace App\Schedule\UseCases\CreateSchedule;
|
||||
|
||||
use App\User\User;
|
||||
|
||||
final readonly class CreateScheduleRequest
|
||||
{
|
||||
public function __construct(
|
||||
public User $user,
|
||||
public ?int $setId,
|
||||
public ?string $elementKind,
|
||||
public ?string $startDate,
|
||||
public ?string $targetDate,
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue