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