2024-06-06 13:26:40 +03:30
|
|
|
|
namespace Netina.Core.Abstracts;
|
2023-12-16 20:25:12 +03:30
|
|
|
|
|
|
|
|
|
|
public interface ISmsService : IScopedDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
Task SendVerifyCodeAsync(string phoneNumber, string verifyCode);
|
|
|
|
|
|
Task SendForgerPasswordAsync(string phoneNumber, string newPassword);
|
2024-06-06 13:26:40 +03:30
|
|
|
|
Task SendLookUpAsync(string phoneNumber, string template, string token, string? token2 = null, string? token3 = null, string? token10 = null, string? token20 = null);
|
2023-12-16 20:25:12 +03:30
|
|
|
|
}
|