Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit 4cf27b0

Browse files
committed
Fixed sln
1 parent 7d5b332 commit 4cf27b0

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
using System.Text.Json.Serialization;
2+
3+
namespace ManagedCode.OpenAI.ImageGenerator;
4+
5+
public class Base64ImageData
6+
{
7+
[JsonPropertyName("b64_json")]
8+
public string Base64Json { get; set; }
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
using System.Text.Json.Serialization;
2+
3+
namespace ManagedCode.OpenAI.ImageGenerator;
4+
5+
public class UrlImageData
6+
{
7+
[JsonPropertyName("url")]
8+
public string Url { get; set; }
9+
}

0 commit comments

Comments
 (0)