code/KustoCopyConsole/Storage/BlobChunk.cs (9 lines of code) (raw):
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KustoCopyConsole.Storage
{
internal record BlobChunk(bool IsProcessReset, Version fileVersion, Stream Stream);
}