using System.Collections.Generic; using System.Threading.Tasks; using Oqtane.Models; namespace Oqtane.Services { /// /// Service to retrieve and update API information. /// public interface IApiService { /// /// returns a list of APIs /// /// Task> GetApisAsync(int siteId); /// /// returns a specific API /// /// Task GetApiAsync(int siteId, string entityName); /// /// Updates an API /// /// /// Task UpdateApiAsync(Api api); } }