7 lines
197 B
C#
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);
|
|
}
|