Implemented the ability to extract an archive image to a cache directory.

This commit is contained in:
Joseph Milazzo 2021-01-08 13:28:59 -06:00
parent 14ad2a3dd5
commit 7ab7e8acc4
8 changed files with 127 additions and 8 deletions

View file

@ -16,6 +16,7 @@ namespace API.Interfaces
Task<IEnumerable<VolumeDto>> GetVolumesDtoAsync(int seriesId);
IEnumerable<Volume> GetVolumes(int seriesId);
Task<SeriesDto> GetSeriesDtoByIdAsync(int seriesId);
Task<Volume> GetVolumeAsync(int volumeId);
}
}