ant-design-blazor/components/table/IFieldColumn.cs
James Yeung 715149e21f feat(module: table): sortable (#319)
* feat(module: table): add sorter

* feat: add sorter tooltip

* feat: add table change event
2020-07-08 16:12:49 +08:00

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; }
}
}