BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/Conversation.cs
2023-09-07 17:04:34 -05:00

15 lines
536 B
C#

namespace BotSharp.Abstraction.Conversations.Models;
public class Conversation
{
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;
public string Dialog { get; set; } = string.Empty;
public ConversationState States { get; set; }
public DateTime UpdatedTime { get; set; } = DateTime.UtcNow;
public DateTime CreatedTime { get; set; } = DateTime.UtcNow;
}