14 lines
247 B
PHP
14 lines
247 B
PHP
<?php
|
|
|
|
namespace App\Domain\Reports\Models;
|
|
|
|
use DateTimeImmutable;
|
|
|
|
final readonly class OperationInterval
|
|
{
|
|
public function __construct(
|
|
public DateTimeImmutable $admittedAt,
|
|
public DateTimeImmutable $operationAt,
|
|
) {}
|
|
}
|