Api/Netina.Core/Abstracts/ISmsService.cs

9 lines
261 B
C#
Raw Normal View History

2024-04-16 20:01:34 +03:30
using Netina.Common.Models;
namespace Netina.Core.Abstracts;
2023-12-16 20:25:12 +03:30
public interface ISmsService : IScopedDependency
{
Task SendVerifyCodeAsync(string phoneNumber, string verifyCode);
Task SendForgerPasswordAsync(string phoneNumber, string newPassword);
}