IDestinationPath
using kCura.WinEDDS.Exceptions;
using System.Text;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Paths
{
public interface IDestinationPath
{
string Path { get; }
Encoding Encoding { get; }
FileWriteException.DestinationFile DestinationFileType { get; }
}
}