<?php
namespace App\Form\Model;
class ImportInventory
{
protected $supplier;
protected $status;
protected $separator;
protected $file;
protected $path;
public function setSupplier($supplier) { $this->supplier = $supplier; return $this; }
public function getSupplier() { return $this->supplier; }
public function setStatus($status) { $this->status = $status; return $this; }
public function getStatus() { return $this->status; }
public function setSeparator($separator) { $this->separator = $separator; return $this; }
public function getSeparator() { return $this->separator; }
public function setFile($file) { $this->file = $file; return $this; }
public function getFile() { return $this->file; }
public function setPath($path) { $this->path = $path; return $this; }
public function getPath() { return $this->path; }
}