BatchInformation
Contains information about single batch.
using System;
using System.Runtime.CompilerServices;
namespace Monitoring
{
public class BatchInformation
{
[CompilerGenerated]
private int _OrdinalNumber;
[CompilerGenerated]
private int _NumberOfRecords;
[CompilerGenerated]
private int _NumberOfRecordsWithErrors;
[CompilerGenerated]
private TimeSpan _MassImportDuration;
public int OrdinalNumber { get; set; }
public int NumberOfRecords { get; set; }
public int NumberOfRecordsWithErrors { get; set; }
public TimeSpan MassImportDuration { get; set; }
}
}