You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
446B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\ViewModels;
  4. class JobTypeViewModel
  5. {
  6. public string $title = 'Job Types';
  7. public bool $saved = false;
  8. public bool $deleted = false;
  9. public array $form = [
  10. 'name' => '',
  11. 'attributes' => [],
  12. ];
  13. /** @var array<string, list<string>> */
  14. public array $errors = [];
  15. /** @var array<string, mixed>|null */
  16. public ?array $jobType = null;
  17. }

Powered by TurnKey Linux.