Your IP : 3.138.124.234


Current Path : /home/bitrix/ext_www/home-comfort.in.ua/bitrix/modules/sale/lib/delivery/requests/
Upload File :
Current File : /home/bitrix/ext_www/home-comfort.in.ua/bitrix/modules/sale/lib/delivery/requests/resultfile.php

<?
namespace Bitrix\Sale\Delivery\Requests;

class ResultFile extends Result
{
	protected $fileName = '';
	protected $fileContent = '';

	/**
	 * ResultFile constructor.
	 * @param string $fileName
	 * @param string $fileContent
	 */
	public function __construct($fileName = '', $fileContent = '')
	{
		$this->fileName = $fileName;
		$this->fileContent = $fileContent;
		parent::__construct();
	}

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

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


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

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