<?php
namespace ConcreteCoreFileImageThumbnail;
class Thumbnail
{
protected $version;
protected $path;
public function __construct(ConcreteCoreFileImageThumbnailTypeVersion $version, $path)
{
$this->version = $version;
$this->path = $path;
}
public function getThumbnailTypeVersionObject()
{
return $this->version;
}
public function getPath()
{
return $this->path;
}
}