SpelementUnit.php 583 Bytes
<?php

namespace RosreestrGeomToWKT;

use RosreestrGeomToWKT\Ordinate;

class SpelementUnit
{
    /**
    * @var string
    */
    public $typeUnit;
    
    /**
    * @var string
    */
    public $suNmb;
    
    /**
    * @var object
    */
    public $ordinate;

    /**
    * @param string $typeUnit
    * @param string $suNmb
    * @param object $ordinate
    */
    public function __construct(string $typeUnit = "", string $suNmb = "", Ordinate $ordinate)
    {
        $this->typeUnit = $typeUnit;
        $this->suNmb = $suNmb;
        $this->ordinate = $ordinate;
    }
}