Files
actions-api/app/Services/Google/DTO/ImageGenerationPrediction.php
T
Jurgis Sakalauskas 6df493fab3 initial commit
2025-01-08 12:45:00 +02:00

16 lines
350 B
PHP

<?php
namespace App\Services\Google\DTO;
class ImageGenerationPrediction
{
public readonly string $bytesBase64Encoded;
public readonly string $mimeType;
public function __construct(string $bytesBase64Encoded, string $mimeType)
{
$this->bytesBase64Encoded = $bytesBase64Encoded;
$this->mimeType = $mimeType;
}
}