kreta/KretaWeb/Classes/ExcelNumericTypeColumn.cs
2024-03-13 00:33:46 +01:00

17 lines
407 B
C#

namespace Kreta.Web.Classes
{
public class ExcelNumericTypeColumn
{
public int ColumnIndex { get; set; }
public int? TableIndex { get; set; }
public bool IsForAll => TableIndex == null;
public ExcelNumericTypeColumn(int columnIndex, int? tableIndex = null)
{
ColumnIndex = columnIndex;
TableIndex = tableIndex;
}
}
}