19 lines
337 B
PHP
19 lines
337 B
PHP
<?php
|
|
|
|
namespace App\Support;
|
|
|
|
readonly class UserTeam
|
|
{
|
|
public function __construct(
|
|
public int $id,
|
|
public string $name,
|
|
public string $slug,
|
|
public bool $isPersonal,
|
|
public ?string $role,
|
|
public ?string $roleLabel,
|
|
public ?bool $isCurrent = null,
|
|
) {
|
|
//
|
|
}
|
|
}
|