code/KustoCopyConsole/Kusto/Data/RecordDistribution.cs (13 lines of code) (raw):
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KustoCopyConsole.Kusto.Data
{
internal record RecordDistribution(
DateTime IngestionTimeStart,
DateTime IngestionTimeEnd,
string ExtentId,
long RowCount);
}