2020-05-30 01:46:41 +08:00
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
|
|
|
|
|
namespace AntDesign
|
|
|
|
|
{
|
|
|
|
|
public interface ITableColumn
|
|
|
|
|
{
|
2020-06-05 16:06:23 +08:00
|
|
|
|
public int Index { get; set; }
|
|
|
|
|
|
2020-05-30 01:46:41 +08:00
|
|
|
|
public string DisplayName { get; }
|
|
|
|
|
|
|
|
|
|
public string FieldName { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|