Monitoring.BatchInformation
Contains information about single batch.
namespace Monitoring
{
public class BatchInformation
{
public int OrdinalNumber { get; set; }
public int NumberOfRecords { get; set; }
public int NumberOfRecordsWithErrors { get; set; }
public TimeSpan MassImportDuration { get; set; }
public BatchInformation();
}
}