<?php declare(strict_types=1);

namespace App\Engine\System;

readonly class SystemVersion
{

    public function getVersion(): string
    {
        return "2.0.0.3";
    }

}