17 lines
345 B
C#
17 lines
345 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace RdtClient.Service.Services
|
|
{
|
|
public interface ITorrentDownloadManager
|
|
{
|
|
Task Tick();
|
|
}
|
|
|
|
public class TorrentDownloadManager : ITorrentDownloadManager
|
|
{
|
|
public async Task Tick()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|