2023-06-12 13:28:49 +00:00
|
|
|
namespace BotSharp.Abstraction.Conversations.Models;
|
|
|
|
|
|
2023-06-27 18:31:13 +00:00
|
|
|
public class Conversation
|
2023-06-12 13:28:49 +00:00
|
|
|
{
|
|
|
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
|
public string AgentId { get; set; } = string.Empty;
|
|
|
|
|
public string UserId { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2023-09-06 04:41:49 +00:00
|
|
|
public string Dialog { get; set; } = string.Empty;
|
2023-09-07 22:04:34 +00:00
|
|
|
public ConversationState States { get; set; }
|
2023-06-27 18:31:13 +00:00
|
|
|
|
2023-06-12 13:28:49 +00:00
|
|
|
public DateTime UpdatedTime { get; set; } = DateTime.UtcNow;
|
|
|
|
|
public DateTime CreatedTime { get; set; } = DateTime.UtcNow;
|
|
|
|
|
}
|