Files
2026-04-18 17:02:56 +02:00

15 lines
224 B
PHP

<?php
declare(strict_types=1);
namespace App\DTOs\Artworks;
final class ArtworkDraftResult
{
public function __construct(
public readonly int $artworkId,
public readonly string $status
) {
}
}