api/NetinaCMS.Core/Abstracts/ISmsService.cs

7 lines
235 B
C#

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