12 lines
201 B
PHP
12 lines
201 B
PHP
<?php
|
|
|
|
namespace App\Domain\Reports\Models;
|
|
|
|
final readonly class SavedReportResult
|
|
{
|
|
public function __construct(
|
|
public int $reportId,
|
|
public ReportSnapshot $snapshot,
|
|
) {}
|
|
}
|