7 lines
175 B
C#
7 lines
175 B
C#
namespace PowderCoating.Application.Interfaces;
|
|
|
|
public interface ISmsService
|
|
{
|
|
Task<(bool Success, string? ErrorMessage)> SendSmsAsync(string toPhone, string message);
|
|
}
|