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.

10 lines
222 B

  1. using Common.Models.RequestResponse;
  2. using Common.Models.SendSMS;
  3. namespace Business.BusinessLogic.SMSApiService
  4. {
  5. public interface ISMSService
  6. {
  7. TPResponse SMSApiMethod(SMSRequestModel model);
  8. }
  9. }