mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
14 lines
252 B
C#
14 lines
252 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface IFieldColumn : IColumn
|
|
{
|
|
public string DisplayName { get; }
|
|
|
|
public string FieldName { get; }
|
|
|
|
public string Format { get; set; }
|
|
}
|
|
}
|