mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-06 05:57:39 +08:00
cae7e144b3
* fix: selection
20 lines
405 B
C#
20 lines
405 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface ISelectionColumn : IColumn
|
|
{
|
|
public bool Disabled { get; set; }
|
|
|
|
internal bool Checked { get; set; }
|
|
|
|
public void Check(bool @checked);
|
|
|
|
public string Key { get; set; }
|
|
|
|
public int RowIndex { get; set; }
|
|
|
|
public IList<ISelectionColumn> RowSelections { get; set; }
|
|
}
|
|
}
|