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; }
|
|||
|
}
|
|||
|
}
|