VEmptySession.cs 365 B

1234567891011121314151617181920
  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. public void Refresh()
  14. {
  15. }
  16. }
  17. }