ant-design-blazor/components/table/IFieldColumn.cs

26 lines
537 B
C#
Raw Normal View History

using System.Collections.Generic;
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 int SorterMultiple { get; }
public ITableSortModel SortModel { get; }
public ITableFilterModel FilterModel { get; }
internal void ClearSorter();
}
}