mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-26 19:28:01 +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);
|
|
}
|
|
} |