mirror of
https://github.com/sakaljurgis/actions-api.git
synced 2026-07-08 22:07:40 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user