Api/NetinaShop.Core/Abstracts/ISmsService.cs

7 lines
236 B
C#
Raw Normal View History

2023-12-16 20:25:12 +03:30
namespace NetinaShop.Core.Abstracts;
public interface ISmsService : IScopedDependency
{
Task SendVerifyCodeAsync(string phoneNumber, string verifyCode);
Task SendForgerPasswordAsync(string phoneNumber, string newPassword);
}