<?php
namespace App\Model;

class Number{
    public string $number;

    public function __construct($number){
	$this->number = $number;
    }
}
