mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-03-05 14:37:14 +08:00

Some checks are pending
analyse-php / build (push) Waiting to run
lint-php / build (push) Waiting to run
test-migrations / build (8.1) (push) Waiting to run
test-migrations / build (8.2) (push) Waiting to run
test-migrations / build (8.3) (push) Waiting to run
test-php / build (8.1) (push) Waiting to run
test-php / build (8.2) (push) Waiting to run
test-php / build (8.3) (push) Waiting to run
12 lines
190 B
PHP
12 lines
190 B
PHP
<?php
|
|
|
|
namespace BookStack\Exports\ZipExportModels;
|
|
|
|
use BookStack\Activity\Models\Tag;
|
|
|
|
class ZipExportImage implements ZipExportModel
|
|
{
|
|
public string $name;
|
|
public string $file;
|
|
}
|