using Newtonsoft.Json.Linq; namespace DealerSelection.Api.Interface; public interface IInfoBipSmsServiceApi { Task sendOTP(int buId, string strMobile); Task resendOTP(int buId, string strMobile, string strOtpPinId); Task verifyOTP(int buId, string strMobile, string strOtpPinId, string otpPin); }