mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
9 lines
198 B
C#
9 lines
198 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Services.Processor
|
|
{
|
|
public interface IAudioUploadProcessService
|
|
{
|
|
Task<bool> UploadAudio(int entryId, string localFile);
|
|
}
|
|
} |