mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
16 lines
339 B
C#
16 lines
339 B
C#
namespace ShoppingAssistantApi.Application.Models.OpenAi;
|
|
|
|
public class OpenAiResponse
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Object { get; set; }
|
|
|
|
public int Created { get; set; }
|
|
|
|
public string Model { get; set; }
|
|
|
|
public OpenAiUsage Usage { get; set; }
|
|
|
|
public List<OpenAiChoice> Choices { get; set; }
|
|
} |