namespace API.Data.Scanner;
/// 
/// Represents a set of Entities which is broken up and iterated on
/// 
public class Chunk
{
    /// 
    /// Total number of entities
    /// 
    public int TotalSize { get; set; }
    /// 
    /// Size of each chunk to iterate over
    /// 
    public int ChunkSize { get; set; }
    /// 
    /// Total chunks to iterate over
    /// 
    public int TotalChunks { get; set; }
}