php-vfxapply/src/Output.php

18 lines
242 B
PHP
Raw Normal View History

2016-12-22 02:15:02 +00:00
<?php
namespace VfxApply;
class Output
{
protected $filename;
public function setFilename($filename)
{
$this->filename = $filename;
}
public function getFilename()
{
return $this->filename;
}
}