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
238 B
C#
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; }
|
|
}
|
|
}
|