7 lines
236 B
C#
7 lines
236 B
C#
|
|
namespace NetinaShop.Core.Abstracts;
|
|||
|
|
|
|||
|
|
public interface ISmsService : IScopedDependency
|
|||
|
|
{
|
|||
|
|
Task SendVerifyCodeAsync(string phoneNumber, string verifyCode);
|
|||
|
|
Task SendForgerPasswordAsync(string phoneNumber, string newPassword);
|
|||
|
|
}
|