Files
FrontOffice.BFF/src/FrontOffice.BFF.Application/Common/Interfaces/IKavenegarService.cs
MeysamMoghaddam c8924255ac u
2025-09-28 00:45:26 +03:30

7 lines
197 B
C#

namespace FrontOffice.BFF.Application.Common.Interfaces;
public interface IKavenegarService
{
Task Send(string mobile, string message);
Task VerifyLookup(string mobile, string token);
}