init
This commit is contained in:
17
KretaWeb/Classes/ExcelNumericTypeColumn.cs
Normal file
17
KretaWeb/Classes/ExcelNumericTypeColumn.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user