rdt-client/server/RdtClient.Service/Wrappers/IProcessFactory.cs
Cucumberrbob fd073b4762
Add interfaces for TorrentData, Downloads, Process, ProcessFactory
Making them interfaces lets us dependency inject them, allowing a given class to be tested.
2025-02-17 21:57:29 +00:00

6 lines
110 B
C#

namespace RdtClient.Service.Wrappers;
public interface IProcessFactory
{
public IProcess NewProcess();
}