using System.Collections.Generic; namespace StellaOps.Provcache; public sealed partial class LazyFetchOrchestrator { private sealed class LazyFetchRunState { public List Errors { get; } = []; public List FailedIndices { get; } = []; public int ChunksFetched { get; set; } public long BytesFetched { get; set; } public int ChunksFailedVerification { get; set; } } }