using System.Threading.Tasks;
namespace Knoks.Framework.Services
{
public interface ISmsService
Task<bool> SendMessage(string text, string srcNumber, params string[] dstNumbers);
}