using BotSharp.Abstraction.Conversations; using BotSharp.Abstraction.Conversations.Models; namespace BotSharp.Core.Conversations; public class SessionService : ISessionService { Dictionary> _sessions; public SessionService() { _sessions = new Dictionary>(); } public void DeleteSession(string sessionId) { throw new NotImplementedException(); } public List GetAllSessions(string userId) { throw new NotImplementedException(); } public SessionModel NewSession(string userId) { return new SessionModel { SessionId = Guid.NewGuid().ToString() }; } }