# worker/4.9.25/src/MWP/FileManager/Model/DownloadFilesResult.php

ManageWP Worker, version 4.9.25. 44 lines.

- Page: https://pluginprobe.com/plugins/worker/4.9.25/code/src/MWP/FileManager/Model/DownloadFilesResult.php
- Raw: https://pluginprobe.com/plugins/worker/4.9.25/raw/src/MWP/FileManager/Model/DownloadFilesResult.php
- Modified: 2019-08-06T09:34:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/worker/4.9.25/code/src/MWP/FileManager/Model/DownloadFilesResult.php#L10-L20`.

```php
<?php
/*
 * This file is part of the ManageWP Worker plugin.
 *
 * (c) ManageWP LLC <contact@managewp.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

class MWP_FileManager_Model_DownloadFilesResult
{

    /**
     * @var MWP_FileManager_Model_Files[]
     */
    private $files;

    function __construct()
    {
    }

    /**
     * @return MWP_FileManager_Model_Files[]
     */
    public function getFiles()
    {
        return $this->files;
    }

    /**
     * @param MWP_FileManager_Model_Files[] $files
     */
    public function setFiles($files)
    {
        $this->files = $files;
    }

    public function addFile(MWP_FileManager_Model_Files $file)
    {
        $this->files[] = $file;
    }
}

```
