17 lines
407 B
C#
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;
|
|
}
|
|
}
|
|
}
|