16 lines
303 B
PHP
16 lines
303 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\EntraAdminRoles;
|
|
|
|
final readonly class EntraAdminRolesReportResult
|
|
{
|
|
public function __construct(
|
|
public bool $created,
|
|
public ?int $storedReportId,
|
|
public string $fingerprint,
|
|
public array $payload,
|
|
) {}
|
|
}
|