rdt-client/server/RdtClient.Service/Services/TorrentDownloadManager.cs
2021-01-09 19:51:36 -07:00

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();
}
}
}