. */ namespace SP\Domain\ItemPreset\Models; /** * Class AccountPrivate * * TODO: serde using JSON */ readonly class AccountPrivate { public function __construct( private ?bool $privateUser = false, private ?bool $privateGroup = false ) { } public function isPrivateUser(): bool { return $this->privateUser; } public function isPrivateGroup(): bool { return $this->privateGroup; } }