ImportStatusHelper
Defines static helper methods to perform common import status operations.
using Microsoft.VisualBasic;
namespace Relativity.DataExchange.Service
{
internal static class ImportStatusHelper
{
public static string ConvertToMessageLineInCell(string message)
{
return $"""{message}{Strings.ChrW(10)}";
}
}
}