Files
meezi/src/Meezi.Core/Interfaces/ISmsService.cs
T

8 lines
267 B
C#
Raw Normal View History

2026-05-27 21:33:48 +03:30
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);
}