15 lines
224 B
PHP
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
|
|
) {
|
|
}
|
|
}
|