<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

FieldMappedEventArgs

public sealed class FieldMappedEventArgs : EventArgs
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; } } }