using System.Collections.Generic; namespace AsbCloudInfrastructure.Services.Parser.Data; public class Row { public Row(int number, IDictionary cells) { Number = number; Cells = cells; } public int Number { get; } public IDictionary Cells { get; } }