using AipGateway.AIP; using AipGateway.API.Domain.Models.Response; namespace AipGateway.API.Application.Interfaces.Services { public interface IApiAipService { Task DownloadAipInfo(); // AIP File Interface Task> GetLabels(); Task> GetPolicies(); Task> GetProtections(); } }