IUserTokenStore.cs 268 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace VCommon.VOpenApi.VAspNetCore
  6. {
  7. public interface IUserTokenStore
  8. {
  9. void Validate(string token, out Guid? tenantId, out Guid? userId);
  10. }
  11. }