BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationDialogCollection.cs
2023-09-05 23:41:49 -05:00

10 lines
287 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationDialogCollection : MongoBase
{
public Guid ConversationId { get; set; }
public string Dialog { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}