chatbot/Chatbot.Domain/Entities/BotSession.cs

15 lines
377 B
C#

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; }
}
}