namespace WalkingTec.Mvvm.Core { /// /// Session接口 /// public interface ISessionService { T Get(string key); void Set(string key, T val); string SessionId { get; } } }