mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-09 09:14:14 +00:00
10 lines
222 B
C#
10 lines
222 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Services.Processor
|
|
{
|
|
public interface IUrlProcessService
|
|
{
|
|
Task<bool> GetInformation(int entryId);
|
|
Task<bool> DownloadAudio(int entryId);
|
|
}
|
|
} |