Skip to content

Commit

Permalink
adds backendLink property to the realty entity
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltan-sule committed Dec 10, 2018
1 parent 768f3f8 commit 180a935
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Entity/Realty/Realty.php
Expand Up @@ -290,6 +290,13 @@ class Realty implements Entity
*/
private $residentialAggregationData;

/**
* @var string
* @JUSTIMMO\Column
*/
private $editUrl;


public function __toString()
{
return (string) $this->getNumber();
Expand Down Expand Up @@ -648,5 +655,14 @@ public function getResidentialAggregationData()
{
return $this->residentialAggregationData;
}

/**
* @return string
*/
public function getEditUrl()
{
return $this->editUrl;
}

}

0 comments on commit 180a935

Please sign in to comment.