10 lines
209 B
C#
10 lines
209 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Identity.API.Services
|
|
{
|
|
public interface ISmsSender
|
|
{
|
|
Task SendSmsAsync(string number, string message);
|
|
}
|
|
}
|