|
- <?php
-
- declare(strict_types=1);
-
- namespace App\ViewModels;
-
- class CampaignTypeViewModel
- {
- public string $title = 'Campaign Types';
- public bool $saved = false;
- public bool $deleted = false;
-
- /**
- * @var array{name: string, attributes: list<array{name: string, type: string}>}
- */
- public array $form = [
- 'name' => '',
- 'attributes' => [],
- ];
-
- /**
- * @var array<string, list<string>>
- */
- public array $errors = [];
-
- /**
- * @var array<string, mixed>|null
- */
- public ?array $campaignType = null;
- }
|