IUserStore.cs 186 B

123456789
  1. using System;
  2. namespace VCommon.VApplication.DataStore
  3. {
  4. public interface IUserStore
  5. {
  6. void ValidateToken(string token, out Guid? tenantId, out Guid userId);
  7. }
  8. }