Knocks/BackEnd/Knoks.Framework/Services/IPhoneService.cs

10 lines
196 B
C#

using System.Threading.Tasks;
namespace Knoks.Framework.Services
{
public interface IPhoneService
{
Task<PhoneNumber> Lookup(string number, string countryCode = null);
}
}