8 lines
197 B
C#
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;
|
|
}
|