initial commit

This commit is contained in:
Jurgis Sakalauskas
2025-01-08 12:45:00 +02:00
commit 6df493fab3
86 changed files with 11890 additions and 0 deletions
@@ -0,0 +1,16 @@
<?php
namespace App\Services\Google\DTO;
class ImageGenerationRequest
{
public function __construct(
public readonly string $prompt,
public readonly ?string $negativePrompt = null,
public readonly ?int $sampleCount = null,
public readonly ?string $aspectRatio = null,
public readonly ?string $safetySetting = null,
)
{
}
}