forked from ddrilling/AsbCloudServer
17 lines
275 B
C#
17 lines
275 B
C#
|
using ClosedXML.Excel;
|
||
|
|
||
|
namespace AsbCloudInfrastructure.Services.Parser.Data;
|
||
|
|
||
|
public class Cell
|
||
|
{
|
||
|
public Cell(int columnNumber,
|
||
|
XLDataType type)
|
||
|
{
|
||
|
ColumnNumber = columnNumber;
|
||
|
Type = type;
|
||
|
}
|
||
|
|
||
|
public int ColumnNumber { get; }
|
||
|
|
||
|
public XLDataType Type { get; }
|
||
|
}
|