namespace Core.Common.Controls.Table
{
public class TableViewCell
{
public TableViewCell(int rowIndex, TableViewColumn column)
{
RowIndex = rowIndex;
Column = column;
}
///
/// Row index of the cell
///
public int RowIndex { get; set; }
///
/// Column of the cell
///
public TableViewColumn Column { get; set; }
}
}