Api-PWA/DocuMed.Core/Abstracts/ISmsService.cs

7 lines
233 B
C#
Raw Permalink Normal View History

2023-10-19 21:28:09 +03:30
namespace DocuMed.Core.Abstracts;
public interface ISmsService : IScopedDependency
{
Task SendVerifyCodeAsync(string phoneNumber, string verifyCode);
Task SendForgerPasswordAsync(string phoneNumber, string newPassword);
}