using System; namespace Chatbot.Api.Domain.Entities { public class BotSession { public Guid SessionId { get; set; } public DateTime StartDate { get; set; } public Guid BotId { get; set; } public string ExternalId { get; set; } public string ClientApplication { get; set; } public string UserKey { get; set; } } }