Api/Netina.Core/Abstracts/ISmsService.cs

8 lines
403 B
C#
Raw Normal View History

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);
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
}