14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
|
|
namespace App\Domain\Reports\Models;
|
|
|
|
use DateTimeImmutable;
|
|
|
|
final readonly class StayInterval
|
|
{
|
|
public function __construct(
|
|
public DateTimeImmutable $startAt,
|
|
public DateTimeImmutable $endAt,
|
|
) {}
|
|
}
|