api/HiVakil.Core/Abstracts/ISmsService.cs

7 lines
233 B
C#
Raw Permalink Normal View History

2024-02-26 12:37:42 +03:30
namespace HiVakil.Core.Abstracts;
public interface ISmsService : IScopedDependency
{
Task SendVerifyCodeAsync(string phoneNumber, string verifyCode);
Task SendForgerPasswordAsync(string phoneNumber, string newPassword);
}