8 lines
267 B
C#
8 lines
267 B
C#
|
|
namespace Meezi.Core.Interfaces;
|
||
|
|
|
||
|
|
public interface ISmsService
|
||
|
|
{
|
||
|
|
Task SendOtpAsync(string phone, string otp, CancellationToken cancellationToken = default);
|
||
|
|
Task SendMessageAsync(string phone, string message, CancellationToken cancellationToken = default);
|
||
|
|
}
|