wip: initial commit

This commit is contained in:
Björn Fromme
2024-11-20 18:32:09 +01:00
parent ae964198e9
commit d4c4e69d09
91 changed files with 32685 additions and 144 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App\BusProNet\Model;
class Pickup
{
public ?int $id = null;
public ?string $code = null;
public ?string $city = null;
public ?string $postalCode = null;
public ?string $street = null;
public ?\DateTimeImmutable $time = null;
public ?float $price = null;
}