mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
63d09f76a5
* feat: add pagination and empty * fix: indent * feat(module: table): add checkbox selection * feat(module: table): add radio selection * feat: add selected rows
14 lines
263 B
C#
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);
|
|
}
|
|
}
|