EmptyExportRequestBuilder
using kCura.WinEDDS.Exporters;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Download
{
public class EmptyExportRequestBuilder : IExportRequestBuilder
{
public IList<ExportRequest> Create(ObjectExportInfo artifact, CancellationToken cancellationToken)
{
return Enumerable.Empty<ExportRequest>().ToList();
}
}
}