BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/SessionModel.cs

8 lines
197 B
C#
Raw Normal View History

2023-06-03 02:07:30 +00:00
namespace BotSharp.Abstraction.Conversations.Models;
public class SessionModel
{
public string UserId { get; set; } = string.Empty;
public string SessionId { get; set; } = string.Empty;
}