BotSharp/Platforms/BotSharp.Platform.OpenAi/Models/ListResponse.cs
2023-05-20 16:31:31 -05:00

17 lines
421 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.Json.Serialization;
namespace ChatGPT.Models;
public class ListResponse<T>
{
public int Total { get; set; }
public int Offset { get; set; }
[JsonProperty("has_missing_conversations")]
public bool HasMissingConversations { get; set; }
public List<T> Items { get; set; } = new List<T>();
}