mirror of
https://github.com/sakaljurgis/actions-api.git
synced 2026-07-08 22:07:40 +00:00
16 lines
350 B
PHP
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;
|
|
}
|
|
}
|