parent
78508094c8
commit
cb2ed7daf9
@ -0,0 +1,13 @@
|
||||
namespace NzbDrone.Core.Indexers;
|
||||
|
||||
public class IndexerDownloadResponse
|
||||
{
|
||||
public byte[] Data { get; private set; }
|
||||
public long ElapsedTime { get; private set; }
|
||||
|
||||
public IndexerDownloadResponse(byte[] data, long elapsedTime = 0)
|
||||
{
|
||||
Data = data;
|
||||
ElapsedTime = elapsedTime;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue