|
using Chatbot.Api.Domain.Entities;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Chatbot.Api.Domain.Repositories
|
|
{
|
|
public interface ISessionRepository
|
|
{
|
|
Task<BotSession> CreateSession(Guid botId, string clientApplication, string externalId, string userKey);
|
|
}
|
|
}
|