mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-23 08:56:25 +00:00
9 lines
267 B
C#
9 lines
267 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Services.Processor {
|
|
public interface IUrlProcessService {
|
|
Task<bool> CheckUrlValid (string url);
|
|
Task<bool> GetInformation (int entryId);
|
|
Task<bool> DownloadAudio (int entryId);
|
|
}
|
|
} |