ant-design-blazor/components/table/ITableColumn.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
238 B
C#

using Microsoft.AspNetCore.Components;
namespace AntDesign
{
public interface ITableColumn
{
public int Index { get; set; }
public string DisplayName { get; }
public string FieldName { get; }
}
}