mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-03 12:37:40 +08:00
715149e21f
* feat(module: table): add sorter * feat: add sorter tooltip * feat: add table change event
19 lines
366 B
C#
19 lines
366 B
C#
using AntDesign.TableModels;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface IFieldColumn : IColumn
|
|
{
|
|
public string DisplayName { get; }
|
|
|
|
public string FieldName { get; }
|
|
|
|
public string Format { get; }
|
|
|
|
public bool Sortable { get; }
|
|
|
|
public ITableSortModel SortModel { get; }
|
|
}
|
|
}
|