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