BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/Session.cs

12 lines
425 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Conversations.Models;
public class Session
{
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 DateTime UpdatedTime { get; set; } = DateTime.UtcNow;
public DateTime CreatedTime { get; set; } = DateTime.UtcNow;
}