sakthivikram/geo-location
0
1package com.georeport.service;2 3/**4 * Interface for SMS service operations.5 */6public interface SmsService {7 /**8 * Send an SMS message9 * @param to Phone number to send the message to10 * @param message The message content11 */12 void sendSms(String to, String message);13}14 