| 1234567891011121314151617181920212223242526272829303132333435363738394041 | <?phpnamespace OSS\Model;/** * Class Tag * @package OSS\Model */class Tag{    /**     * Tag constructor.     *     * @param string $key     * @param string $value     */    public function __construct($key, $value)    {        $this->key = $key;        $this->value = $value;    }    /**     * @return string     */    public function getKey()    {        return $this->key;    }    /**     * @return string     */    public function getValue()    {        return $this->value;    }    private $key = "";    private $value = "";}
 |