- using GrpcShared.DTO.Auth;
- using ProtoBuf.Grpc.Configuration;
-
- namespace GrpcShared.Interfaces
- {
- [Service]
- public interface IAuthService
- {
- Task<CodeResponse> GetCode(AuthRequest request);
- Task<AuthResponse> GetAccessToken(CodeResponse code);
- Task<AuthParams> GetAuthParams();
- }
- }
|