1<?php
2
3namespace SocialDept\AtpParity\Events;
4
5use Illuminate\Foundation\Events\Dispatchable;
6
7class ImportFailed
8{
9 use Dispatchable;
10
11 public function __construct(
12 public readonly string $did,
13 public readonly string $collection,
14 public readonly string $error,
15 ) {}
16}