mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-06 16:45:20 +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);
|
|
}
|
|
} |