namespace TxFormFieldMapper; internal sealed record MapResult(string FormFieldName, string JsonFieldName, double Score, string Status) { public string ToConsoleLine() { var score = Score > 0 ? $" ({Score:0.00})" : string.Empty; return $"{Status}: '{FormFieldName}' -> '{JsonFieldName}'{score}"; } }