api/NetinaCMS.Core/Abstracts/ISmsService.cs

7 lines
235 B
C#
Raw Permalink Normal View History

2024-03-24 12:35:42 +03:30
namespace NetinaCMS.Core.Abstracts;
2024-03-09 19:53:01 +03:30
public interface ISmsService : IScopedDependency
{
Task SendVerifyCodeAsync(string phoneNumber, string verifyCode);
Task SendForgerPasswordAsync(string phoneNumber, string newPassword);
}