26 lines
788 B
PHP
26 lines
788 B
PHP
<?php
|
|
|
|
namespace App\Domains\Admin\Actions\UpdateTenantContact;
|
|
|
|
use App\Models\Tenant;
|
|
|
|
class UpdateTenantContactRequest
|
|
{
|
|
public function __construct(
|
|
public Tenant $tenant,
|
|
public string $email,
|
|
public string $emailFinance,
|
|
public string $postcode,
|
|
public string $city,
|
|
/** Bezeichnung des Rechnungsstellers; leer bedeutet "Name des Mandanten verwenden". */
|
|
public ?string $invoiceSenderName = null,
|
|
/** Straße und Hausnummer -- Pflichtangabe auf Rechnungen nach § 14 Abs. 4 UStG. */
|
|
public ?string $address1 = null,
|
|
/** Optionale Zusatzzeile, z.B. "c/o ...". */
|
|
public ?string $address2 = null,
|
|
public ?string $address3 = null,
|
|
public ?string $phone = null,
|
|
) {
|
|
}
|
|
}
|