Api/Netina.Core/Abstracts/ISmsService.cs

9 lines
261 B
C#

using Netina.Common.Models;
namespace Netina.Core.Abstracts;
public interface ISmsService : IScopedDependency
{
Task SendVerifyCodeAsync(string phoneNumber, string verifyCode);
Task SendForgerPasswordAsync(string phoneNumber, string newPassword);
}