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

IServiceNotification

Represents an abstract object to provide notification updates when performing service-related operations.
namespace Relativity.DataExchange.Service { internal interface IServiceNotification { void NotifyError(string message); void NotifyStatus(string message); void NotifyWarning(string message); } }