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