IFileAppService.cs 327 B

123456789101112
  1. using FileStorage.FileManagement.Dto;
  2. using System.Threading.Tasks;
  3. using Volo.Abp.Application.Dtos;
  4. using Volo.Abp.Application.Services;
  5. namespace FileStorage.FileManagement
  6. {
  7. public interface IFileAppService : IApplicationService
  8. {
  9. Task<PagedResultDto<FileInfoDto>> GetAll(GetFileInputDto input);
  10. }
  11. }