adrema/app/Invoice/MailRecipient.php

16 lines
240 B
PHP
Raw Permalink Normal View History

2022-11-07 16:18:11 +01:00
<?php
2023-04-18 22:08:45 +02:00
namespace App\Invoice;
2022-11-07 16:18:11 +01:00
class MailRecipient
{
public string $name;
public string $email;
public function __construct(string $email, string $name)
{
$this->email = $email;
$this->name = $name;
}
}