20 lines
380 B
PHP
20 lines
380 B
PHP
<?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',
|
|
];
|
|
} |