Relativity.DataExchange.Process.FieldMappedEventArgs
Represents the field mapped event argument data. This class cannot be inherited.
namespace Relativity.DataExchange.Process
{
public sealed class FieldMappedEventArgs : EventArgs
{
public string SourceField { get; }
public string TargetField { get; }
public FieldMappedEventArgs(string sourceField, string targetField);
}
}