BotSharp/src/Plugins/BotSharp.Plugin.MongoRepository/Collections/ConversationCollection.cs

14 lines
395 B
C#
Raw Normal View History

2023-08-26 04:41:01 +00:00
namespace BotSharp.Plugin.MongoRepository.Collections;
public class ConversationCollection : MongoBase
{
public string AgentId { get; set; }
public string UserId { get; set; }
public string Title { get; set; }
public string Dialog { get; set; }
public string State { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}