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.

11 lines
291 B

  1. using Common.Models.Notification;
  2. using Common.Models.RequestResponse;
  3. using Common.Models.SendSMS;
  4. namespace Business.BusinessLogic.NotificationApiService
  5. {
  6. public interface INotificationService
  7. {
  8. TPResponse NotificationApiMethod(SendNotificationRequest model);
  9. }
  10. }