mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 17:28:43 +00:00
11 lines
310 B
C#
11 lines
310 B
C#
using System.Threading.Tasks;
|
|
using PodNoms.Api.Models;
|
|
|
|
namespace PodNoms.Api.Services.Processor {
|
|
public interface IUrlProcessService {
|
|
|
|
Task<AudioType> GetInformation(int entryId);
|
|
Task<AudioType> GetInformation(PodcastEntry entry);
|
|
Task<bool> DownloadAudio(int entryId);
|
|
}
|
|
} |