Relativity.DataExchange.Process.ProcessEventDto
Represents the process event data transfer object. This class cannot be inherited.
namespace Relativity.DataExchange.Process
{
public sealed class ProcessEventDto
{
public ProcessEventType EventType { get; set; }
public string Message { get; set; }
public string RecordInfo { get; set; }
public DateTime Timestamp { get; set; }
public ProcessEventDto();
public ProcessEventDto(ProcessEventType eventType, string recordInfo, string message, DateTime timestamp);
}
}