12345678910111213141516171819202122232425 |
- using System.Threading.Tasks;
- using GxPress.Request.App.VerificationCode;
- namespace GxPress.Service.Interface.VerificationCode
- {
- public interface IVerificationCodeService : IService
- {
-
-
-
-
- Task<string> GetCodeAsync(int userId);
-
-
-
-
- Task<bool> ConfirmationCodeAsync(VerificationCodeRequest request);
-
-
-
-
- Task<bool> LastingConfirmationCodeAsync(VerificationCodeRequest request);
- }
- }
|