WIP: Implementation of stuff goes on

This commit is contained in:
Björn Fromme
2023-10-05 12:53:17 +02:00
parent 96d6170907
commit 1097b84447
23 changed files with 443 additions and 118 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Model;
class BenefitsDto
{
public static array $defaults = [
'anreise',
'unterkunft',
'verpflegung',
'skipass',
];
public static array $values = [
'anreise' => 'Anreise im E&P Reisebus',
'unterkunft' => 'Unterkunft',
'verpflegung' => 'Verpflegung',
'skipass' => 'Skipass',
];
}