VEmptySession.cs 314 B

1234567891011121314151617
  1. using System;
  2. using VCommon.Ioc;
  3. namespace VCommon.VApplication
  4. {
  5. public class VEmptySession : IVSession, ISingletonIocClass
  6. {
  7. public Guid? UserId { get; }
  8. public Guid? TenantId { get; }
  9. public string Token { get; }
  10. public void DemandAuth()
  11. {
  12. }
  13. }
  14. }