BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationDocument.cs
2023-12-31 22:56:10 -06:00

13 lines
391 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationDocument : MongoBase
{
public string AgentId { get; set; }
public string UserId { get; set; }
public string Title { get; set; }
public string Channel { get; set; }
public string Status { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}