1234567891011121314151617181920 |
- using System;
- using VCommon.Ioc;
- namespace VCommon.VApplication
- {
- public class VEmptySession : IVSession, ISingletonIocClass
- {
- public Guid? UserId { get; }
- public Guid? TenantId { get; }
- public string Token { get; }
- public void DemandAuth()
- {
- }
- public void Refresh()
- {
- }
- }
- }
|