using System.Collections.Generic; namespace Nethereum.BlockchainProcessing.BlockProcessing.CrawlerSteps { public class CrawlerStepCompleted { public CrawlerStepCompleted(IEnumerable executedStepsCollection, T stepData) { ExecutedStepsCollection = executedStepsCollection; StepData = stepData; } public IEnumerable ExecutedStepsCollection { get; private set; } public T StepData { get; private set; } } }