mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-15 15:44:03 +08:00
12 lines
229 B
PHP
12 lines
229 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Exports\ZipExportModels;
|
||
|
|
||
|
use BookStack\App\Model;
|
||
|
use BookStack\Exports\ZipExportFiles;
|
||
|
|
||
|
interface ZipExportModel
|
||
|
{
|
||
|
// public static function fromModel(Model $model, ZipExportFiles $files): self;
|
||
|
}
|