<?php
namespace ConcreteCoreWorkflowProgress;
use ConcreteCoreFoundationObject;
class Response extends Object {
protected $wprURL = '';
public function setWorkflowProgressResponseURL($wprURL) {
$this->wprURL = $wprURL;
}
public function getWorkflowProgressResponseURL() {
return $this->wprURL;
}
}