aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Helper/Content.php
blob: 1cc5e4cf87012b586f45b8738163d642e01a0c17 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                     

                                   




















                                    
 
<?php

namespace Wallabag\CoreBundle\Helper;

class Content
{
    private $title;

    private $body;

    public function __constructor()
    {
    }

    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;
    }
}