15 lines
536 B
C#
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;
|
|
}
|