IApiAipService.cs 357 B

1234567891011121314
  1. using Aip.Api.Service.Aip.Models;
  2. using Aip.Api.Service.Models.Response;
  3. namespace Aip.Api.Service.Services.Interfaces;
  4. public interface IApiAipService
  5. {
  6. Task<GeneralResponse> DownloadAipInfo();
  7. // AIP File Interface
  8. Task<List<AipLabel>> GetLabels();
  9. Task<List<AipLabel>> GetPolicies();
  10. Task<List<AipTemplate>> GetProtections();
  11. }