forked from ddrilling/AsbCloudServer
17 lines
333 B
C#
17 lines
333 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudInfrastructure.Services.Parser.Data;
|
|
|
|
public class Row
|
|
{
|
|
public Row(int number,
|
|
IDictionary<string, (Cell, object?)> cells)
|
|
{
|
|
Number = number;
|
|
Cells = cells;
|
|
}
|
|
|
|
public int Number { get; }
|
|
|
|
public IDictionary<string, (Cell CellInfo, object? CellValue)> Cells { get; }
|
|
} |