You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
339 B
9 lines
339 B
using Newtonsoft.Json.Linq;
|
|
namespace DealerSelection.Api.Interface;
|
|
|
|
public interface IInfoBipSmsServiceApi
|
|
{
|
|
Task<JObject> sendOTP(int buId, string strMobile);
|
|
Task<JObject> resendOTP(int buId, string strMobile, string strOtpPinId);
|
|
Task<JObject> verifyOTP(int buId, string strMobile, string strOtpPinId, string otpPin);
|
|
}
|