2025-06-28 17:05:54 +03:30
|
|
|
|
|
|
|
|
|
using Hushian.Application.Models.Message;
|
|
|
|
|
|
|
|
|
|
namespace Common.Contracts.Infrastructure
|
|
|
|
|
{
|
|
|
|
|
public interface IMessageSender
|
|
|
|
|
{
|
2025-08-20 14:15:10 +03:30
|
|
|
|
Task<bool> SendMessageVerification(string To, string Code);
|
2025-06-28 17:05:54 +03:30
|
|
|
|
}
|
|
|
|
|
}
|