Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Paths.DestinationPath
namespace Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Paths
{
public abstract class DestinationPath : IDestinationPath
{
protected readonly ExportFile ExportSettings;
public abstract string Path { get; }
public abstract Encoding Encoding { get; }
public abstract FileWriteException.DestinationFile DestinationFileType { get; }
protected DestinationPath(ExportFile exportSettings);
protected string FormatPath(string extension);
}
}