using Newtonsoft.Json.Linq; using System.Threading.Tasks; using System.Collections.Generic; using Pipefy.Models; namespace Pipefy.Services { public interface IPipefyApiService { Task GetRecordsAsync(string tableId); Task GetGestoresAsync(string tableId); Task CreateRecordsAsync(string tableId, List records); } }