wallabag/src/Wallabag/CoreBundle/Helper/Content.php

35 lines
455 B
PHP
Raw Normal View History

2015-01-26 21:15:19 +00:00
<?php
namespace Wallabag\CoreBundle\Helper;
class Content
{
private $title;
private $body;
2015-01-31 18:09:34 +00:00
public function __constructor()
{
2015-01-26 21:15:19 +00:00
}
public function getTitle()
{
return $this->title;
}
public function setTitle($title)
{
$this->title = $title;
}
public function getBody()
{
return $this->body;
}
public function setBody($body)
{
$this->body = $body;
}
2015-01-31 18:09:34 +00:00
}