src/Custom/Internal/IInternalListResponseOfT.cs (9 lines of code) (raw):

using System.Collections.Generic; namespace OpenAI; internal interface IInternalListResponse<T> { IReadOnlyList<T> Data { get; } string FirstId { get; } string LastId { get; } bool HasMore { get; } }