mirror of
https://github.com/openclassify/openclassify.git
synced 2026-03-01 09:04:38 -06:00
24 lines
424 B
PHP
24 lines
424 B
PHP
<?php namespace Visiosoft\AdvsModule\Adv\Event;
|
|
|
|
class EditedAd
|
|
{
|
|
private $ad;
|
|
private $before_editing;
|
|
|
|
public function __construct($before_editing, $ad)
|
|
{
|
|
$this->ad = $ad;
|
|
$this->before_editing = $before_editing;
|
|
}
|
|
|
|
public function getAdDetail()
|
|
{
|
|
return $this->ad;
|
|
}
|
|
|
|
public function getBeforeEditingDetail()
|
|
{
|
|
return $this->before_editing;
|
|
}
|
|
}
|