Files
iTop/setup/wizardsteps/WizardState.php
Timmy38 c4d7c89553 N°9144 Add data audit setup step
N°8864 Fix unneeded char
2026-02-19 14:27:24 +01:00

22 lines
361 B
PHP

<?php
class WizardState
{
public function __construct($sNextStep, $sCurrentState = '')
{
$this->sNextStep = $sNextStep;
$this->sCurrentState = $sCurrentState;
}
private string $sNextStep;
private string $sCurrentState;
public function GetNextStep()
{
return $this->sNextStep;
}
public function GetState()
{
return $this->sCurrentState;
}
}