IApiAipService.cs 396 B

123456789101112131415
  1. using AipGateway.AIP;
  2. using AipGateway.API.Domain.Models.Response;
  3. namespace AipGateway.API.Application.Interfaces.Services
  4. {
  5. public interface IApiAipService
  6. {
  7. Task<GeneralResponse> DownloadAipInfo();
  8. // AIP File Interface
  9. Task<List<AipLabel>> GetLabels();
  10. Task<List<AipLabel>> GetPolicies();
  11. Task<List<AipTemplate>> GetProtections();
  12. }
  13. }