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