14 lines
321 B
PHP
14 lines
321 B
PHP
<?php
|
|
|
|
namespace App\Domains\Admin\Actions\UpdateDocumentTemplate;
|
|
|
|
class UpdateDocumentTemplateResponse
|
|
{
|
|
public bool $success = false;
|
|
|
|
public ?string $message = null;
|
|
|
|
/** @var array<int, string> Blöcke, die nicht gespeichert wurden (unbekannt oder nicht editierbar). */
|
|
public array $skipped = [];
|
|
}
|