initial commit
This commit is contained in:
23
app/Data/ContactImport.php
Normal file
23
app/Data/ContactImport.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Data;
|
||||
|
||||
use Carbon\Carbon;
|
||||
|
||||
class ContactImport
|
||||
{
|
||||
public function __construct(
|
||||
public readonly string $id,
|
||||
public readonly Carbon $queueAt,
|
||||
public readonly ?Carbon $startedAt,
|
||||
public readonly ?Carbon $finishedAt,
|
||||
public readonly int $totalProcessed,
|
||||
public readonly int $errors,
|
||||
public readonly int $duplicates,
|
||||
public readonly string $state,
|
||||
public readonly ?string $file,
|
||||
) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user