ant-design-blazor/components/table/ITable.cs
James Yeung 63d09f76a5 feat(module: table): add selection (#190)
* feat: add pagination and empty

* fix: indent

* feat(module: table): add checkbox selection

* feat(module: table): add radio selection

* feat: add selected rows
2020-06-05 16:06:23 +08:00

14 lines
263 B
C#

using System.Collections.Generic;
namespace AntDesign
{
public interface ITable
{
void AddColumn(ITableColumn column);
IRowSelection HeaderSelection { get; set; }
internal void OnSelectionChanged(int[] checkedIndex);
}
}