ILabelManagerForArtifact
using kCura.WinEDDS.Exporters;
using System.Threading;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Directories
{
public interface ILabelManagerForArtifact
{
string GetImageSubdirectoryLabel(int objectExportInfoArtifactId);
string GetNativeSubdirectoryLabel(int objectExportInfoArtifactId);
string GetTextSubdirectoryLabel(int objectExportInfoArtifactId);
string GetPdfSubdirectoryLabel(int objectExportInfoArtifactId);
string GetVolumeLabel(int objectExportInfoArtifactId);
void InitializeFor(ObjectExportInfo[] artifacts, VolumePredictions[] volumePredictions, CancellationToken cancellationToken);
}
}