BotSharp/Platforms/BotSharp.Platform.OpenAi/Models/ConversationListResponse.cs

12 lines
213 B
C#
Raw Normal View History

2023-05-20 21:31:31 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace ChatGPT.Models;
public class ConversationListResponse
{
public string Id { get; set; }
public string Title { get; set; }
}