using Brizco.Infrastructure.Models.RestApi.KaveNegar; namespace Brizco.Infrastructure.RestServices; public interface IKaveNegarRestApi { [Post("/{apiKey}/verify/lookup.json")] Task SendLookUp(string apiKey, [Query] string receptor, [Query] string token, [Query] string token2, [Query] string token10, [Query] string token20, [Query] string template); [Post("/{apiKey}/sms/send.json")] Task SendSms(string apiKey, [Query] string receptor, [Query] string message, [Query] string sender); }