aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Helper/Content.php
blob: 81acbad7c967fcb40fe16bd9b4f32ff85020019a (plain) (tree)

































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