mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-12-04 20:57:59 +08:00
13 lines
250 B
C#
13 lines
250 B
C#
namespace WalkingTec.Mvvm.Core
|
|
{
|
|
/// <summary>
|
|
/// Session接口
|
|
/// </summary>
|
|
public interface ISessionService
|
|
{
|
|
T Get<T>(string key);
|
|
void Set<T>(string key, T val);
|
|
string SessionId { get; }
|
|
}
|
|
}
|