|
namespace Mango.Nop.Services;
|
|
|
|
public abstract class MgSessionItem(string sessionKey) : IMgSessionItem
|
|
{
|
|
public string SessionId { get; protected set; } = sessionKey;
|
|
public string? SignaRConnectionId { get; set; }
|
|
public int RequestCount { get; set; }
|
|
} |