Update
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BackOffice.BFF.Application.Common.Interfaces;
|
||||
public interface IAfrinoIdpService
|
||||
{
|
||||
Task<bool> SendOtp(string mobile);
|
||||
Task<string> VerifyOtp(string mobile, string otpCode);
|
||||
Task<string> CreateUser(string mobile);
|
||||
Task<bool> AddRole(string mobile, string role);
|
||||
}
|
||||
Reference in New Issue
Block a user