<?php namespace Todaymade\Daux\Tree;

abstract class ContentAbstract extends Entry
{
    /** @var string */
    protected $content;

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

    /**
     * @param string $content
     */
    public function setContent($content)
    {
        $this->content = $content;
    }
}