BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/SessionModel.cs
2023-06-02 21:07:30 -05:00

8 lines
197 B
C#

namespace BotSharp.Abstraction.Conversations.Models;
public class SessionModel
{
public string UserId { get; set; } = string.Empty;
public string SessionId { get; set; } = string.Empty;
}