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

12 lines
213 B
C#

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; }
}