feat: api endpoints and xml sync for contingents data

This commit is contained in:
Björn Fromme
2026-04-22 11:23:52 +02:00
parent a1f68ec11d
commit 9b84893d88
50 changed files with 2567 additions and 221 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace App\Model;
final readonly class BpnXmlSnapshotRefreshResult
{
public function __construct(
public int $processed,
public int $failed,
public int $orphanedDeleted,
) {
}
}